14 lines
382 B
C#
14 lines
382 B
C#
namespace NetinaShop.Domain.Entities.Warehouses;
|
|
|
|
public partial class Warehouses
|
|
{
|
|
|
|
}
|
|
|
|
public partial class Shipping
|
|
{
|
|
public static Shipping Create(string title, string warehouseName, bool isFastShipping, bool isShipBySeller, bool isOriginalWarehouse)
|
|
{
|
|
return new Shipping(title, warehouseName, isFastShipping, isShipBySeller, isOriginalWarehouse);
|
|
}
|
|
} |