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