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