public WebsiteFileRepository(UnitOfWork uow)
 {
     _context = uow.Context;
 }
 public SiteSettingsRepository(UnitOfWork uow)
 {
     _context = uow.Context;
 }
예제 #3
0
 public ModuleContentRepository(UnitOfWork uow)
 {
     _context = uow.Context;
 }
예제 #4
0
 public NewsRepository(UnitOfWork uow)
 {
     _context = uow.Context;
 }
예제 #5
0
 public ModuleContentTranslationRepository(UnitOfWork uow)
 {
     _context = uow.Context;
 }
예제 #6
0
 public UserRepository(UnitOfWork uow)
 {
     _context = uow.Context;
 }
예제 #7
0
 public UnitOfWork(EasyWebsiteContext context)
 {
     _context = context;
 }
예제 #8
0
 public UnitOfWork()
 {
     _context = new EasyWebsiteContext();
 }
예제 #9
0
 public ClientRepository(UnitOfWork uow)
 {
     _context = uow.Context;
 }
예제 #10
0
 public RefreshTokenRepository(UnitOfWork uow)
 {
     _context = uow.Context;
 }