public static BrandViewModel CreateModel(this Brand brand, int ProductsCount = 0) { var model = new BrandViewModel(); brand.CopyTo(model, ProductsCount); return(model); }
public static BrandViewModel CreateViewModel(this Brand brand) { var model = new BrandViewModel(); brand.CopyTo(model); return(model); }
public static BrandDTO ToDTO(this Brand brand) => brand?.CopyTo(new BrandDTO());