Esempio n. 1
0
 public DaiLysController(
     IDaiLyRepository dailyRepository,
     IMapper mapper,
     IOptions <AppSettings> appSettings)
 {
     _dailyRepository = dailyRepository;
     _mapper          = mapper;
     _appSettings     = appSettings.Value;
 }
Esempio n. 2
0
        // GET: /Admin/ProductType/

        public CardOptionController(IDaiLyRepository _daiLyRepository)
        {
            this.daiLyRepository = _daiLyRepository;
        }
Esempio n. 3
0
        // GET: /Admin/ProductType/

        public GameDaiLyController(IDaiLyRepository _dailyRepository)
        {
            this.dailyRepository = _dailyRepository;
        }
Esempio n. 4
0
 public DaiLyService(IDaiLyRepository daiLyRepository, IUnitOfWork unitOfWork)
 {
     this.daiLyRepository = daiLyRepository;
     this.unitOfWork      = unitOfWork;
 }