2023-12-20 10:37:44 +03:30
|
|
|
|
namespace NetinaShop.Domain.Entities.Warehouses;
|
|
|
|
|
|
|
|
|
|
|
|
public partial class Warehouses
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public partial class Shipping
|
|
|
|
|
|
{
|
2024-02-12 22:01:15 +03:30
|
|
|
|
public static Shipping Create(string title, string warehouseName, bool isFastShipping, bool isShipBySeller, bool isOriginalWarehouse, double deliveryCost,int workingDays)
|
2023-12-20 10:37:44 +03:30
|
|
|
|
{
|
2024-02-12 22:01:15 +03:30
|
|
|
|
return new Shipping(title, warehouseName, isFastShipping, isShipBySeller, isOriginalWarehouse,deliveryCost, workingDays);
|
2023-12-20 10:37:44 +03:30
|
|
|
|
}
|
|
|
|
|
|
}
|