public UserManager(StoreDB.DB.StoreDBContext context) { this._context = context; }
public ProductManager(StoreDB.DB.StoreDBContext context) { this._context = context; }
public StoreManager(StoreDB.DB.StoreDBContext context) { this.userManager = new UserManager(context); this.productManager = new ProductManager(context); }