Example #1
0
 public UserManager(StoreDB.DB.StoreDBContext context)
 {
     this._context = context;
 }
Example #2
0
 public ProductManager(StoreDB.DB.StoreDBContext context)
 {
     this._context = context;
 }
Example #3
0
 public StoreManager(StoreDB.DB.StoreDBContext context)
 {
     this.userManager    = new UserManager(context);
     this.productManager = new ProductManager(context);
 }