public CarController(BelexpLogistikContext context)
 {
     db = context;
 }
 public RideController(BelexpLogistikContext context, UserManager <User> userManager)
 {
     db           = context;
     _userManager = userManager;
 }
 public WaybillController(BelexpLogistikContext context, IHostingEnvironment hostingEnvironment)
 {
     _hostingEnvironment = hostingEnvironment;
     db = context;
 }
Exemple #4
0
 public UsersController(UserManager <User> userManager, BelexpLogistikContext context)
 {
     db           = context;
     _userManager = userManager;
 }