示例#1
0
 private void AddDemoCustomerData()
 {
     CustomerStore.Add(new CustomerEntity()
     {
         CustomerUId = "CUID1-JW", FirstName = "John", LastName = "Wick"
     });
     CustomerStore.Add(new CustomerEntity()
     {
         CustomerUId = "CUID2-MS", FirstName = "Michael", LastName = "Stonebridge"
     });
     CustomerStore.Add(new CustomerEntity()
     {
         CustomerUId = "CUID3-MW", FirstName = "Michael", LastName = "Weston"
     });
 }