Exemplo n.º 1
0
 public CheckListController(CheckListRepo checkListRepo,
                            icheckcmsContext context,
                            IConducteurRepo conducteurRepo,
                            IVehiculeRepo vehiculeRepo,
                            ISiteRepo siteRepo)
 {
     _checkListRepo  = checkListRepo;
     _conducteurRepo = conducteurRepo;
     _vehiculeRepo   = vehiculeRepo;
     _context        = context;
     _siteRepo       = siteRepo;
 }
Exemplo n.º 2
0
 public ValuesController(CheckListRepo checkListRepo)
 {
     _checkListRepo = checkListRepo;
 }
Exemplo n.º 3
0
 public ExcelController(ICheckContext context, CheckListRepo checkListRepo, IHostingEnvironment environment)
 {
     _context       = context;
     _environment   = environment;
     _checkListRepo = checkListRepo;
 }
Exemplo n.º 4
0
 public CheckListService(IConfiguration configuration)
 {
     _configuration = configuration;
     _checkListRepo = new CheckListRepo(_configuration);
 }