public myScheduleRepo(myScheduleContext appDbContext,
                       ILogger <myScheduleContext> logger)
 {
     _appDbContext = appDbContext;
     _logger       = logger;
     _locations    = new LocationRepo(appDbContext);
 }
Beispiel #2
0
 public ListRepo(myScheduleContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
 public LocationRepo(myScheduleContext appDbContext)
 {
     _appDbContext = appDbContext;
 }