Esempio n. 1
0
 public static Entities.Locations MapLocation(BusinessLogic.Models.Location location)
 {
     return(new Entities.Locations
     {
         LocationId = location.ID,
         Name = location.Name
     });
 }
Esempio n. 2
0
 public static Entities.Locations MapLocationWithInventory(BusinessLogic.Models.Location location)
 {
     return(new Entities.Locations
     {
         LocationId = location.ID,
         Name = location.Name,
         InventoryItems = MapInventoryItems(location)
     });
 }