Exemple #1
0
 public AccountController(ILogger <AccountController> logger,
                          SignInManager <Utilisateur> signInManager,
                          UserManager <Utilisateur> userManager,
                          IConfiguration config,
                          RoleManager <IdentityRole> roleManager,
                          EntrepotContext context)
 {
     _logger        = logger;
     _signInManager = signInManager;
     _userManager   = userManager;
     _config        = config;
     _context       = context;
     _roleManager   = roleManager;
 }
 public EmployeesController(EntrepotContext _db)
 {
     _Db = _db;
 }
 public TransporteursController(EntrepotContext _db)
 {
     _Db = _db;
 }
 public FournisseursController(EntrepotContext _db)
 {
     _Db = _db;
 }
 public ClientsController(EntrepotContext _db)
 {
     _Db = _db;
 }
Exemple #6
0
 public ReservationsController(EntrepotContext _db)
 {
     _Db = _db;
 }
 public ProduitsController(EntrepotContext _db)
 {
     _Db = _db;
 }
 public VoituresController(EntrepotContext _db)
 {
     _Db = _db;
 }