public PhoneRepasitory(MobileShopContext context)
 {
     _context = context;
 }
예제 #2
0
 public CustomersController(MobileShopContext _deContext)
 {
     dbContext = _deContext;
 }
 public ProductsController(MobileShopContext _deContext, IHostingEnvironment _env)
 {
     dbContext = _deContext;
     env       = _env;
 }
 public VendorsController(MobileShopContext _deContext)
 {
     dbContext = _deContext;
 }
예제 #5
0
 public UsersController(MobileShopContext _deContext)
 {
     dbContext = _deContext;
 }
예제 #6
0
 public ProductCategoryController(MobileShopContext _deContext)
 {
     dbContext = _deContext;
 }
 public AccountController(MobileShopContext context)
 {
     _context = context;
 }
 public PurchaseController(MobileShopContext _deContext)
 {
     dbContext = _deContext;
 }
예제 #9
0
 public SaleController(MobileShopContext _dbContext)
 {
     dbContext = _dbContext;
 }
예제 #10
0
 public BrandRepasitory(MobileShopContext context)
 {
     _context = context;
 }