Esempio n. 1
0
 public static DA.Store ManMap(Library.Store store) => new DA.Store
 {
     StoreId      = store.StoreID,
     AddressLine1 = store.AddressLine1,
     AddressLine2 = store.AddressLine2,
     City         = store.City,
     State        = store.State,
     Zip          = store.ZIP
 };
 public static Models.Store ManMap2(Library.Store store) => new Models.Store
 {
     StoreID      = store.StoreID,
     AddressLine1 = store.AddressLine1,
     AddressLine2 = store.AddressLine2,
     City         = store.City,
     State        = store.State,
     ZIP          = store.ZIP
 };