Пример #1
0
 public SchoolingEventRepository(JetAnotherEmsContext context, IFileRepository fileRepository) : base(context)
 {
     _fileRepository = fileRepository;
 }
Пример #2
0
 public SchoolingEventDayTagRepository(JetAnotherEmsContext context) : base(context)
 {
 }
Пример #3
0
 public SchoolingEventFollowerRepository(JetAnotherEmsContext context) : base(context)
 {
 }
Пример #4
0
 public FileRepository(JetAnotherEmsContext context) : base(context)
 {
 }
Пример #5
0
 public ValuesController(JetAnotherEmsContext context, IHostingEnvironment env)
 {
     _context = context;
     _env     = env;
 }
 public EntityFrameworkRepository(JetAnotherEmsContext context)
 {
     Context = context;
     DbSet   = Context.Set <TEntity>();
 }
Пример #7
0
 public UnitOfWork(JetAnotherEmsContext context)
 {
     _context = context;
 }
Пример #8
0
 public SchoolingEventTicketRepository(JetAnotherEmsContext context) : base(context)
 {
 }
 public SchoolingEventGalleryFileRepository(JetAnotherEmsContext context) : base(context)
 {
 }