Example #1
0
 public ShopModel(IProductInMemory productInMemory, IServiceInMemory serviceInMemory, IVisitInMemory visitInMemory, ICustomerInMemory customerInMemory)
 {
     this.productInMemory  = productInMemory;
     this.serviceInMemory  = serviceInMemory;
     this.visitInMemory    = visitInMemory;
     this.customerInMemory = customerInMemory;
 }
Example #2
0
 public ListModel(ICustomerInMemory customerInMemory)
 {
     this.customerInMemory = customerInMemory;
 }
Example #3
0
 public EditModel(ICustomerInMemory customerInMemory, IMembershipInMemory membershipInMemory)
 {
     this.customerInMemory   = customerInMemory;
     this.membershipInMemory = membershipInMemory;
 }