Exemple #1
0
 public PriceCostDto(IPriceCostDto item)
 {
     if (item != null)
     {
         Id        = item.Id;
         Type      = item.Type;
         Procedure = item.Procedure;
         Value     = item.Value;
         DateEnd   = item.DateEnd;
     }
 }
Exemple #2
0
 private PriceCostDto _map(IPriceCostDto item)
 {
     return(new PriceCostDto(item));
 }