コード例 #1
0
ファイル: Shop.cshtml.cs プロジェクト: BelaMKD/BeautyShop1
 public ShopModel(IProductInMemory productInMemory, IServiceInMemory serviceInMemory, IVisitInMemory visitInMemory, ICustomerInMemory customerInMemory)
 {
     this.productInMemory  = productInMemory;
     this.serviceInMemory  = serviceInMemory;
     this.visitInMemory    = visitInMemory;
     this.customerInMemory = customerInMemory;
 }
コード例 #2
0
 public ListModel(ICustomerInMemory customerInMemory)
 {
     this.customerInMemory = customerInMemory;
 }
コード例 #3
0
ファイル: Edit.cshtml.cs プロジェクト: BelaMKD/BeautyShop1
 public EditModel(ICustomerInMemory customerInMemory, IMembershipInMemory membershipInMemory)
 {
     this.customerInMemory   = customerInMemory;
     this.membershipInMemory = membershipInMemory;
 }