Exemplo n.º 1
0
 public WithoutSupplier(LinkProductsSuppliers link)
 {
     if (link != null)
     {
         Id          = link.Id;
         ProductInfo = link.Product?.Info;
         Price       = link.Price;
     }
 }
Exemplo n.º 2
0
 public WithoutProduct(LinkProductsSuppliers link)
 {
     if (link != null)
     {
         Id           = link.Id;
         SupplierInfo = link.Supplier?.Info;
         Price        = link.Price;
     }
 }