556 lines
21 KiB
C#
556 lines
21 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using NetinaShop.Domain.Dtos.LargDtos;
|
|
using NetinaShop.Domain.Dtos.SmallDtos;
|
|
using NetinaShop.Domain.Entities.Orders;
|
|
|
|
namespace NetinaShop.Domain.Mappers
|
|
{
|
|
public static partial class OrderMapper
|
|
{
|
|
public static Order AdaptToOrder(this OrderLDto p1)
|
|
{
|
|
return p1 == null ? null : new Order()
|
|
{
|
|
TotalProductsPrice = (double)p1.TotalProductsPrice,
|
|
PackingPrice = (double)p1.PackingPrice,
|
|
ServicePrice = (double)p1.ServicePrice,
|
|
DeliveryPrice = (double)p1.DeliveryPrice,
|
|
DiscountPrice = (double)p1.DiscountPrice,
|
|
TaxesPrice = (double)p1.TaxesPrice,
|
|
TotalPrice = (double)p1.TotalPrice,
|
|
IsPayed = p1.IsPayed,
|
|
OrderStatus = p1.OrderStatus,
|
|
DoneAt = p1.DoneAt,
|
|
OrderAt = p1.OrderAt,
|
|
PreparingMinute = p1.PreparingMinute,
|
|
DiscountCode = p1.DiscountCode,
|
|
OrderProducts = funcMain1(p1.OrderProducts),
|
|
OrderDeliveries = funcMain2(p1.OrderDeliveries),
|
|
Id = p1.Id,
|
|
CreatedAt = p1.CreatedAt
|
|
};
|
|
}
|
|
public static Order AdaptTo(this OrderLDto p4, Order p5)
|
|
{
|
|
if (p4 == null)
|
|
{
|
|
return null;
|
|
}
|
|
Order result = p5 ?? new Order();
|
|
|
|
result.TotalProductsPrice = (double)p4.TotalProductsPrice;
|
|
result.PackingPrice = (double)p4.PackingPrice;
|
|
result.ServicePrice = (double)p4.ServicePrice;
|
|
result.DeliveryPrice = (double)p4.DeliveryPrice;
|
|
result.DiscountPrice = (double)p4.DiscountPrice;
|
|
result.TaxesPrice = (double)p4.TaxesPrice;
|
|
result.TotalPrice = (double)p4.TotalPrice;
|
|
result.IsPayed = p4.IsPayed;
|
|
result.OrderStatus = p4.OrderStatus;
|
|
result.DoneAt = p4.DoneAt;
|
|
result.OrderAt = p4.OrderAt;
|
|
result.PreparingMinute = p4.PreparingMinute;
|
|
result.DiscountCode = p4.DiscountCode;
|
|
result.OrderProducts = funcMain3(p4.OrderProducts, result.OrderProducts);
|
|
result.OrderDeliveries = funcMain4(p4.OrderDeliveries, result.OrderDeliveries);
|
|
result.Id = p4.Id;
|
|
result.CreatedAt = p4.CreatedAt;
|
|
return result;
|
|
|
|
}
|
|
public static Expression<Func<OrderLDto, Order>> ProjectToOrder => p10 => new Order()
|
|
{
|
|
TotalProductsPrice = (double)p10.TotalProductsPrice,
|
|
PackingPrice = (double)p10.PackingPrice,
|
|
ServicePrice = (double)p10.ServicePrice,
|
|
DeliveryPrice = (double)p10.DeliveryPrice,
|
|
DiscountPrice = (double)p10.DiscountPrice,
|
|
TaxesPrice = (double)p10.TaxesPrice,
|
|
TotalPrice = (double)p10.TotalPrice,
|
|
IsPayed = p10.IsPayed,
|
|
OrderStatus = p10.OrderStatus,
|
|
DoneAt = p10.DoneAt,
|
|
OrderAt = p10.OrderAt,
|
|
PreparingMinute = p10.PreparingMinute,
|
|
DiscountCode = p10.DiscountCode,
|
|
OrderProducts = p10.OrderProducts.Select<OrderProductSDto, OrderProduct>(p11 => new OrderProduct()
|
|
{
|
|
Count = p11.Count,
|
|
ProductFee = (double)p11.ProductFee,
|
|
ProductCost = (double)p11.ProductCost,
|
|
OrderProductStatus = p11.OrderProductStatus,
|
|
ProductId = p11.ProductId,
|
|
OrderId = p11.OrderId,
|
|
Id = p11.Id,
|
|
CreatedAt = p11.CreatedAt
|
|
}).ToList<OrderProduct>(),
|
|
OrderDeliveries = p10.OrderDeliveries.Select<OrderDeliverySDto, OrderDelivery>(p12 => new OrderDelivery()
|
|
{
|
|
Address = p12.Address,
|
|
PostalCode = p12.PostalCode,
|
|
ReceiverPhoneNumber = p12.ReceiverPhoneNumber,
|
|
ReceiverFullName = p12.ReceiverFullName,
|
|
ShippingId = p12.ShippingId,
|
|
OrderId = p12.OrderId,
|
|
Id = p12.Id,
|
|
CreatedAt = p12.CreatedAt
|
|
}).ToList<OrderDelivery>(),
|
|
Id = p10.Id,
|
|
CreatedAt = p10.CreatedAt
|
|
};
|
|
public static OrderLDto AdaptToLDto(this Order p13)
|
|
{
|
|
return p13 == null ? null : new OrderLDto()
|
|
{
|
|
TotalPrice = (long)p13.TotalPrice,
|
|
DeliveryPrice = (long)p13.DeliveryPrice,
|
|
TaxesPrice = (long)p13.TaxesPrice,
|
|
ServicePrice = (long)p13.ServicePrice,
|
|
PackingPrice = (long)p13.PackingPrice,
|
|
TotalProductsPrice = (long)p13.TotalProductsPrice,
|
|
DiscountPrice = (long)p13.DiscountPrice,
|
|
IsPayed = p13.IsPayed,
|
|
OrderStatus = p13.OrderStatus,
|
|
DoneAt = p13.DoneAt,
|
|
OrderAt = p13.OrderAt,
|
|
PreparingMinute = p13.PreparingMinute,
|
|
DiscountCode = p13.DiscountCode,
|
|
OrderProducts = funcMain5(p13.OrderProducts),
|
|
OrderDeliveries = funcMain6(p13.OrderDeliveries),
|
|
Id = p13.Id,
|
|
CreatedAt = p13.CreatedAt
|
|
};
|
|
}
|
|
public static OrderLDto AdaptTo(this Order p16, OrderLDto p17)
|
|
{
|
|
if (p16 == null)
|
|
{
|
|
return null;
|
|
}
|
|
OrderLDto result = p17 ?? new OrderLDto();
|
|
|
|
result.TotalPrice = (long)p16.TotalPrice;
|
|
result.DeliveryPrice = (long)p16.DeliveryPrice;
|
|
result.TaxesPrice = (long)p16.TaxesPrice;
|
|
result.ServicePrice = (long)p16.ServicePrice;
|
|
result.PackingPrice = (long)p16.PackingPrice;
|
|
result.TotalProductsPrice = (long)p16.TotalProductsPrice;
|
|
result.DiscountPrice = (long)p16.DiscountPrice;
|
|
result.IsPayed = p16.IsPayed;
|
|
result.OrderStatus = p16.OrderStatus;
|
|
result.DoneAt = p16.DoneAt;
|
|
result.OrderAt = p16.OrderAt;
|
|
result.PreparingMinute = p16.PreparingMinute;
|
|
result.DiscountCode = p16.DiscountCode;
|
|
result.OrderProducts = funcMain7(p16.OrderProducts, result.OrderProducts);
|
|
result.OrderDeliveries = funcMain8(p16.OrderDeliveries, result.OrderDeliveries);
|
|
result.Id = p16.Id;
|
|
result.CreatedAt = p16.CreatedAt;
|
|
return result;
|
|
|
|
}
|
|
public static Expression<Func<Order, OrderLDto>> ProjectToLDto => p22 => new OrderLDto()
|
|
{
|
|
TotalPrice = (long)p22.TotalPrice,
|
|
DeliveryPrice = (long)p22.DeliveryPrice,
|
|
TaxesPrice = (long)p22.TaxesPrice,
|
|
ServicePrice = (long)p22.ServicePrice,
|
|
PackingPrice = (long)p22.PackingPrice,
|
|
TotalProductsPrice = (long)p22.TotalProductsPrice,
|
|
DiscountPrice = (long)p22.DiscountPrice,
|
|
IsPayed = p22.IsPayed,
|
|
OrderStatus = p22.OrderStatus,
|
|
DoneAt = p22.DoneAt,
|
|
OrderAt = p22.OrderAt,
|
|
PreparingMinute = p22.PreparingMinute,
|
|
DiscountCode = p22.DiscountCode,
|
|
OrderProducts = p22.OrderProducts.Select<OrderProduct, OrderProductSDto>(p23 => new OrderProductSDto()
|
|
{
|
|
Count = p23.Count,
|
|
ProductFee = (float)p23.ProductFee,
|
|
ProductCost = (float)p23.ProductCost,
|
|
OrderProductStatus = p23.OrderProductStatus,
|
|
ProductId = p23.ProductId,
|
|
OrderId = p23.OrderId,
|
|
Id = p23.Id,
|
|
CreatedAt = p23.CreatedAt
|
|
}).ToList<OrderProductSDto>(),
|
|
OrderDeliveries = p22.OrderDeliveries.Select<OrderDelivery, OrderDeliverySDto>(p24 => new OrderDeliverySDto()
|
|
{
|
|
Address = p24.Address,
|
|
PostalCode = p24.PostalCode,
|
|
ReceiverPhoneNumber = p24.ReceiverPhoneNumber,
|
|
ReceiverFullName = p24.ReceiverFullName,
|
|
OrderId = p24.OrderId,
|
|
ShippingId = p24.ShippingId,
|
|
Id = p24.Id,
|
|
CreatedAt = p24.CreatedAt
|
|
}).ToList<OrderDeliverySDto>(),
|
|
Id = p22.Id,
|
|
CreatedAt = p22.CreatedAt
|
|
};
|
|
public static Order AdaptToOrder(this OrderSDto p25)
|
|
{
|
|
return p25 == null ? null : new Order()
|
|
{
|
|
TotalProductsPrice = (double)p25.TotalProductsPrice,
|
|
PackingPrice = (double)p25.PackingPrice,
|
|
ServicePrice = (double)p25.ServicePrice,
|
|
DeliveryPrice = (double)p25.DeliveryPrice,
|
|
DiscountPrice = (double)p25.DiscountPrice,
|
|
TaxesPrice = (double)p25.TaxesPrice,
|
|
TotalPrice = (double)p25.TotalPrice,
|
|
IsPayed = p25.IsPayed,
|
|
OrderStatus = p25.OrderStatus,
|
|
DoneAt = p25.DoneAt,
|
|
OrderAt = p25.OrderAt,
|
|
PreparingMinute = p25.PreparingMinute,
|
|
DiscountCode = p25.DiscountCode,
|
|
Id = p25.Id,
|
|
CreatedAt = p25.CreatedAt
|
|
};
|
|
}
|
|
public static Order AdaptTo(this OrderSDto p26, Order p27)
|
|
{
|
|
if (p26 == null)
|
|
{
|
|
return null;
|
|
}
|
|
Order result = p27 ?? new Order();
|
|
|
|
result.TotalProductsPrice = (double)p26.TotalProductsPrice;
|
|
result.PackingPrice = (double)p26.PackingPrice;
|
|
result.ServicePrice = (double)p26.ServicePrice;
|
|
result.DeliveryPrice = (double)p26.DeliveryPrice;
|
|
result.DiscountPrice = (double)p26.DiscountPrice;
|
|
result.TaxesPrice = (double)p26.TaxesPrice;
|
|
result.TotalPrice = (double)p26.TotalPrice;
|
|
result.IsPayed = p26.IsPayed;
|
|
result.OrderStatus = p26.OrderStatus;
|
|
result.DoneAt = p26.DoneAt;
|
|
result.OrderAt = p26.OrderAt;
|
|
result.PreparingMinute = p26.PreparingMinute;
|
|
result.DiscountCode = p26.DiscountCode;
|
|
result.Id = p26.Id;
|
|
result.CreatedAt = p26.CreatedAt;
|
|
return result;
|
|
|
|
}
|
|
public static OrderSDto AdaptToSDto(this Order p28)
|
|
{
|
|
return p28 == null ? null : new OrderSDto()
|
|
{
|
|
TotalPrice = (long)p28.TotalPrice,
|
|
DeliveryPrice = (long)p28.DeliveryPrice,
|
|
TaxesPrice = (long)p28.TaxesPrice,
|
|
ServicePrice = (long)p28.ServicePrice,
|
|
PackingPrice = (long)p28.PackingPrice,
|
|
TotalProductsPrice = (long)p28.TotalProductsPrice,
|
|
DiscountPrice = (long)p28.DiscountPrice,
|
|
IsPayed = p28.IsPayed,
|
|
OrderStatus = p28.OrderStatus,
|
|
DoneAt = p28.DoneAt,
|
|
OrderAt = p28.OrderAt,
|
|
PreparingMinute = p28.PreparingMinute,
|
|
DiscountCode = p28.DiscountCode,
|
|
Id = p28.Id,
|
|
CreatedAt = p28.CreatedAt
|
|
};
|
|
}
|
|
public static OrderSDto AdaptTo(this Order p29, OrderSDto p30)
|
|
{
|
|
if (p29 == null)
|
|
{
|
|
return null;
|
|
}
|
|
OrderSDto result = p30 ?? new OrderSDto();
|
|
|
|
result.TotalPrice = (long)p29.TotalPrice;
|
|
result.DeliveryPrice = (long)p29.DeliveryPrice;
|
|
result.TaxesPrice = (long)p29.TaxesPrice;
|
|
result.ServicePrice = (long)p29.ServicePrice;
|
|
result.PackingPrice = (long)p29.PackingPrice;
|
|
result.TotalProductsPrice = (long)p29.TotalProductsPrice;
|
|
result.DiscountPrice = (long)p29.DiscountPrice;
|
|
result.IsPayed = p29.IsPayed;
|
|
result.OrderStatus = p29.OrderStatus;
|
|
result.DoneAt = p29.DoneAt;
|
|
result.OrderAt = p29.OrderAt;
|
|
result.PreparingMinute = p29.PreparingMinute;
|
|
result.DiscountCode = p29.DiscountCode;
|
|
result.Id = p29.Id;
|
|
result.CreatedAt = p29.CreatedAt;
|
|
return result;
|
|
|
|
}
|
|
public static Expression<Func<Order, OrderSDto>> ProjectToSDto => p31 => new OrderSDto()
|
|
{
|
|
TotalPrice = (long)p31.TotalPrice,
|
|
DeliveryPrice = (long)p31.DeliveryPrice,
|
|
TaxesPrice = (long)p31.TaxesPrice,
|
|
ServicePrice = (long)p31.ServicePrice,
|
|
PackingPrice = (long)p31.PackingPrice,
|
|
TotalProductsPrice = (long)p31.TotalProductsPrice,
|
|
DiscountPrice = (long)p31.DiscountPrice,
|
|
IsPayed = p31.IsPayed,
|
|
OrderStatus = p31.OrderStatus,
|
|
DoneAt = p31.DoneAt,
|
|
OrderAt = p31.OrderAt,
|
|
PreparingMinute = p31.PreparingMinute,
|
|
DiscountCode = p31.DiscountCode,
|
|
Id = p31.Id,
|
|
CreatedAt = p31.CreatedAt
|
|
};
|
|
|
|
private static List<OrderProduct> funcMain1(List<OrderProductSDto> p2)
|
|
{
|
|
if (p2 == null)
|
|
{
|
|
return null;
|
|
}
|
|
List<OrderProduct> result = new List<OrderProduct>(p2.Count);
|
|
|
|
int i = 0;
|
|
int len = p2.Count;
|
|
|
|
while (i < len)
|
|
{
|
|
OrderProductSDto item = p2[i];
|
|
result.Add(item == null ? null : new OrderProduct()
|
|
{
|
|
Count = item.Count,
|
|
ProductFee = (double)item.ProductFee,
|
|
ProductCost = (double)item.ProductCost,
|
|
OrderProductStatus = item.OrderProductStatus,
|
|
ProductId = item.ProductId,
|
|
OrderId = item.OrderId,
|
|
Id = item.Id,
|
|
CreatedAt = item.CreatedAt
|
|
});
|
|
i++;
|
|
}
|
|
return result;
|
|
|
|
}
|
|
|
|
private static List<OrderDelivery> funcMain2(List<OrderDeliverySDto> p3)
|
|
{
|
|
if (p3 == null)
|
|
{
|
|
return null;
|
|
}
|
|
List<OrderDelivery> result = new List<OrderDelivery>(p3.Count);
|
|
|
|
int i = 0;
|
|
int len = p3.Count;
|
|
|
|
while (i < len)
|
|
{
|
|
OrderDeliverySDto item = p3[i];
|
|
result.Add(item == null ? null : new OrderDelivery()
|
|
{
|
|
Address = item.Address,
|
|
PostalCode = item.PostalCode,
|
|
ReceiverPhoneNumber = item.ReceiverPhoneNumber,
|
|
ReceiverFullName = item.ReceiverFullName,
|
|
ShippingId = item.ShippingId,
|
|
OrderId = item.OrderId,
|
|
Id = item.Id,
|
|
CreatedAt = item.CreatedAt
|
|
});
|
|
i++;
|
|
}
|
|
return result;
|
|
|
|
}
|
|
|
|
private static List<OrderProduct> funcMain3(List<OrderProductSDto> p6, List<OrderProduct> p7)
|
|
{
|
|
if (p6 == null)
|
|
{
|
|
return null;
|
|
}
|
|
List<OrderProduct> result = new List<OrderProduct>(p6.Count);
|
|
|
|
int i = 0;
|
|
int len = p6.Count;
|
|
|
|
while (i < len)
|
|
{
|
|
OrderProductSDto item = p6[i];
|
|
result.Add(item == null ? null : new OrderProduct()
|
|
{
|
|
Count = item.Count,
|
|
ProductFee = (double)item.ProductFee,
|
|
ProductCost = (double)item.ProductCost,
|
|
OrderProductStatus = item.OrderProductStatus,
|
|
ProductId = item.ProductId,
|
|
OrderId = item.OrderId,
|
|
Id = item.Id,
|
|
CreatedAt = item.CreatedAt
|
|
});
|
|
i++;
|
|
}
|
|
return result;
|
|
|
|
}
|
|
|
|
private static List<OrderDelivery> funcMain4(List<OrderDeliverySDto> p8, List<OrderDelivery> p9)
|
|
{
|
|
if (p8 == null)
|
|
{
|
|
return null;
|
|
}
|
|
List<OrderDelivery> result = new List<OrderDelivery>(p8.Count);
|
|
|
|
int i = 0;
|
|
int len = p8.Count;
|
|
|
|
while (i < len)
|
|
{
|
|
OrderDeliverySDto item = p8[i];
|
|
result.Add(item == null ? null : new OrderDelivery()
|
|
{
|
|
Address = item.Address,
|
|
PostalCode = item.PostalCode,
|
|
ReceiverPhoneNumber = item.ReceiverPhoneNumber,
|
|
ReceiverFullName = item.ReceiverFullName,
|
|
ShippingId = item.ShippingId,
|
|
OrderId = item.OrderId,
|
|
Id = item.Id,
|
|
CreatedAt = item.CreatedAt
|
|
});
|
|
i++;
|
|
}
|
|
return result;
|
|
|
|
}
|
|
|
|
private static List<OrderProductSDto> funcMain5(List<OrderProduct> p14)
|
|
{
|
|
if (p14 == null)
|
|
{
|
|
return null;
|
|
}
|
|
List<OrderProductSDto> result = new List<OrderProductSDto>(p14.Count);
|
|
|
|
int i = 0;
|
|
int len = p14.Count;
|
|
|
|
while (i < len)
|
|
{
|
|
OrderProduct item = p14[i];
|
|
result.Add(item == null ? null : new OrderProductSDto()
|
|
{
|
|
Count = item.Count,
|
|
ProductFee = (float)item.ProductFee,
|
|
ProductCost = (float)item.ProductCost,
|
|
OrderProductStatus = item.OrderProductStatus,
|
|
ProductId = item.ProductId,
|
|
OrderId = item.OrderId,
|
|
Id = item.Id,
|
|
CreatedAt = item.CreatedAt
|
|
});
|
|
i++;
|
|
}
|
|
return result;
|
|
|
|
}
|
|
|
|
private static List<OrderDeliverySDto> funcMain6(List<OrderDelivery> p15)
|
|
{
|
|
if (p15 == null)
|
|
{
|
|
return null;
|
|
}
|
|
List<OrderDeliverySDto> result = new List<OrderDeliverySDto>(p15.Count);
|
|
|
|
int i = 0;
|
|
int len = p15.Count;
|
|
|
|
while (i < len)
|
|
{
|
|
OrderDelivery item = p15[i];
|
|
result.Add(item == null ? null : new OrderDeliverySDto()
|
|
{
|
|
Address = item.Address,
|
|
PostalCode = item.PostalCode,
|
|
ReceiverPhoneNumber = item.ReceiverPhoneNumber,
|
|
ReceiverFullName = item.ReceiverFullName,
|
|
OrderId = item.OrderId,
|
|
ShippingId = item.ShippingId,
|
|
Id = item.Id,
|
|
CreatedAt = item.CreatedAt
|
|
});
|
|
i++;
|
|
}
|
|
return result;
|
|
|
|
}
|
|
|
|
private static List<OrderProductSDto> funcMain7(List<OrderProduct> p18, List<OrderProductSDto> p19)
|
|
{
|
|
if (p18 == null)
|
|
{
|
|
return null;
|
|
}
|
|
List<OrderProductSDto> result = new List<OrderProductSDto>(p18.Count);
|
|
|
|
int i = 0;
|
|
int len = p18.Count;
|
|
|
|
while (i < len)
|
|
{
|
|
OrderProduct item = p18[i];
|
|
result.Add(item == null ? null : new OrderProductSDto()
|
|
{
|
|
Count = item.Count,
|
|
ProductFee = (float)item.ProductFee,
|
|
ProductCost = (float)item.ProductCost,
|
|
OrderProductStatus = item.OrderProductStatus,
|
|
ProductId = item.ProductId,
|
|
OrderId = item.OrderId,
|
|
Id = item.Id,
|
|
CreatedAt = item.CreatedAt
|
|
});
|
|
i++;
|
|
}
|
|
return result;
|
|
|
|
}
|
|
|
|
private static List<OrderDeliverySDto> funcMain8(List<OrderDelivery> p20, List<OrderDeliverySDto> p21)
|
|
{
|
|
if (p20 == null)
|
|
{
|
|
return null;
|
|
}
|
|
List<OrderDeliverySDto> result = new List<OrderDeliverySDto>(p20.Count);
|
|
|
|
int i = 0;
|
|
int len = p20.Count;
|
|
|
|
while (i < len)
|
|
{
|
|
OrderDelivery item = p20[i];
|
|
result.Add(item == null ? null : new OrderDeliverySDto()
|
|
{
|
|
Address = item.Address,
|
|
PostalCode = item.PostalCode,
|
|
ReceiverPhoneNumber = item.ReceiverPhoneNumber,
|
|
ReceiverFullName = item.ReceiverFullName,
|
|
OrderId = item.OrderId,
|
|
ShippingId = item.ShippingId,
|
|
Id = item.Id,
|
|
CreatedAt = item.CreatedAt
|
|
});
|
|
i++;
|
|
}
|
|
return result;
|
|
|
|
}
|
|
}
|
|
} |