Ejemplo n.º 1
0
 public APIControllerBase(IConfigProvider configProvider, ILogr logger)
 {
     config = configProvider;
     logr = logger;
     DCCConnectionString = config.CnnString(Constants.DCC_CNN_STRING);
     repo = new DBDCCRepository(DCCConnectionString, logr);
 }
Ejemplo n.º 2
0
 public RoleController(IDBRepository db)
 {
     _db = db;
 }
Ejemplo n.º 3
0
 public DbLogWriter(IDBRepository dbRepository)
 {
     _dbRepository = dbRepository;
 }
Ejemplo n.º 4
0
 public UserController(IDBRepository db)
 {
     _db = db;
 }
Ejemplo n.º 5
0
 public ReservationDetailsController(IDBRepository context)
 {
     Repository = context;
 }
 public DirectApiDownloadService(IWebClient webClient, IDBRepository dBRepository)
 {
     _webClient    = webClient;
     _dBRepository = dBRepository;
 }
Ejemplo n.º 7
0
 public EmployeesController(IDBRepository context)
 {
     Repository = context;
 }
Ejemplo n.º 8
0
 public LoginController(IDBRepository <User, User> dataRepository) => _dataRepository = dataRepository;
Ejemplo n.º 9
0
 public Logic(IDBRepository dBRepository)
 {
     _dBRepository = dBRepository;
 }
Ejemplo n.º 10
0
 public AdresTypeController(IDBRepository <AdresType, AdresType> dataRepository /*, IEventBus eventBus*/)
 {
     _dataRepository = dataRepository;
     /* _eventBus = eventBus;*/
 }
Ejemplo n.º 11
0
 public FindController()
 {
     DBRepository = new DBRepository();
 }
Ejemplo n.º 12
0
 public PollingStationController(IDBRepository repository) : base(repository)
 {
 }
Ejemplo n.º 13
0
 public CarsService()
 {
     _carDetailsRepository = new CarRepository();
 }
Ejemplo n.º 14
0
 public VoterCountController(IDBRepository repository) : base(repository)
 {
 }
Ejemplo n.º 15
0
 public FlickeringController(IDBRepository repo)
 {
     this.repository = repo;
 }
Ejemplo n.º 16
0
 public UpdateUsernameCmd(IDBRepository dbRepository)
 {
     this.Repository = dbRepository;
 }
Ejemplo n.º 17
0
 public SQLController()
 {
     _dbRepository = new DBRepository();
 }
Ejemplo n.º 18
0
 public HomeController(IDBRepository dbRepository)
 {
     this.dbRepository = dbRepository;
 }
 public UsersController(IDBRepository repository)
 {
     _repository = repository;
 }
Ejemplo n.º 20
0
 public LeaguesController(IDBRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Ejemplo n.º 21
0
 public ManufacturerService()
 {
     _manufacturerRepository = new ManufacturerRepository();
 }
Ejemplo n.º 22
0
 public JobManager(IDBRepository <Job> jobRepository, IMapper ooptiRHMapper)
 {
     this._jobRepository = jobRepository;
     this._ooptiRHMapper = ooptiRHMapper;
 }
Ejemplo n.º 23
0
 public ProjectController(IDBRepository db)
 {
     _db = db;
 }
Ejemplo n.º 24
0
 public CarViewModel(IDBRepository clientRepository)
 {
     _clientRepository = clientRepository;
     cars = _clientRepository.GetCars();
 }
 public ElectionDistrictController(IDBRepository repository) : base(repository)
 {
 }
Ejemplo n.º 26
0
 public PermissionController(IDBRepository db)
 {
     _db = db;
 }
Ejemplo n.º 27
0
 public PeopleController(IDBRepository repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Ejemplo n.º 28
0
 public ClientsController(IDBRepository <Client> clientRepository, IHRService hrService)
 {
     _clientRepository = clientRepository;
     _hrService        = hrService;
 }
 public BikesController(IDBRepository context)
 {
     Repository = context;
 }
Ejemplo n.º 30
0
 public DesignationController(IDBRepository repository) : base(repository)
 {
 }
Ejemplo n.º 31
0
 public RepoService(IDBRepository repo)
 {
     _repo = repo;
 }