Beispiel #1
0
 public static Library.Customer Map(Entities.Customer customer) => new Library.Customer
 {
     CustomerId   = customer.CustomerId,
     FirstName    = customer.FirstName,
     LastName     = customer.LastName,
     DefaultStore = Map(customer.DefaultStoreNavigation)
 };
Beispiel #2
0
 public static Library.Model.Customer Map(Entities.Customer customer) => new Library.Model.Customer
 {
     CustomerID = customer.CustomerId,
     FirstName  = customer.FirstName,
     LastName   = customer.LastName
 };