14 lines
441 B
C#
14 lines
441 B
C#
namespace Netina.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, double deliveryCost,int workingDays)
|
|
{
|
|
return new Shipping(title, warehouseName, isFastShipping, isShipBySeller, isOriginalWarehouse,deliveryCost, workingDays);
|
|
}
|
|
} |