public PersonnelRepository(IUnitOfWork <ILetsSuggestContext> uow,
                            IOptions <LoginSetting> loginSetting,
                            IOptions <AuthenticationKeys> authenticationkeys) : base(uow)
 {
     _context            = uow.Context as LetsSuggestContext;
     _loginSetting       = loginSetting;
     _authenticationkeys = authenticationkeys;
 }
Esempio n. 2
0
 public GalleryRepository(IUnitOfWork <ILetsSuggestContext> uow,
                          IOptions <ImagePath> imagePath) : base(uow)
 {
     _context   = uow.Context as LetsSuggestContext;
     _imagePath = imagePath;
 }