コード例 #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
ファイル: List.cshtml.cs プロジェクト: BelaMKD/BeautyShop1
 public ListModel(IVisitInMemory visitInMemory)
 {
     this.visitInMemory = visitInMemory;
 }
コード例 #3
0
ファイル: Buy.cshtml.cs プロジェクト: BelaMKD/BeautyShop2
 public BuyModel(IVisitInMemory visitInMemory, IPersonInMemory personInMemory)
 {
     this.visitInMemory  = visitInMemory;
     this.personInMemory = personInMemory;
 }