예제 #1
0
 public OrdersController(BuildingMaterialsShopContext context)
 {
     _context = context;
 }
예제 #2
0
 public EmployeesController(IOptions <JWTSettings> jwtsetting, BuildingMaterialsShopContext context)
 {
     _context     = context;
     _jwtsettings = jwtsetting.Value;
 }
예제 #3
0
 public ImportsController(BuildingMaterialsShopContext context)
 {
     _context = context;
 }
예제 #4
0
 public WareHousesController(BuildingMaterialsShopContext context)
 {
     _context = context;
 }
 public AuthController(IConfiguration config, BuildingMaterialsShopContext context)
 {
     _config  = config;
     _context = context;
 }
예제 #6
0
 public ProductsController(BuildingMaterialsShopContext context, IWebHostEnvironment webHostEnvironment)
 {
     _context             = context;
     _webhostEnvieronment = webHostEnvironment;
 }
 public SearchController(BuildingMaterialsShopContext context)
 {
     _context = context;
 }
예제 #8
0
 public CategoriesController(BuildingMaterialsShopContext context)
 {
     _context = context;
 }
예제 #9
0
 public ThongKeController(BuildingMaterialsShopContext context)
 {
     _context = context;
 }
 public StatusController(BuildingMaterialsShopContext context)
 {
     _context = context;
 }