Example #1
0
 public BaseRepository(AllNotesDbContext context)
 {
     _context = context;
 }
 public ExerciseRepository(AllNotesDbContext context) : base(context)
 {
 }
Example #3
0
 public SeriesServices(AllNotesDbContext context, IWrapperRepository wrapperRepository) : base(context)
 {
     WrapperRepository = wrapperRepository;
 }
 public CheckListRepository(AllNotesDbContext context) : base(context)
 {
 }
Example #5
0
 public WrapperRepository(AllNotesDbContext appContext)
 {
     _appContext = appContext;
 }
Example #6
0
 public SeriesRepository(AllNotesDbContext context) : base(context)
 {
 }
Example #7
0
 public ScheduleRepository(AllNotesDbContext context) : base(context)
 {
 }
Example #8
0
 public NoteRepository(AllNotesDbContext context) : base(context)
 {
 }
Example #9
0
 public BaseServices(AllNotesDbContext context)
 {
     _context = context;
 }
 public CategoryRepository(AllNotesDbContext context) : base(context)
 {
 }