Exemplo n.º 1
0
 public myScheduleRepo(myScheduleContext appDbContext,
                       ILogger <myScheduleContext> logger)
 {
     _appDbContext = appDbContext;
     _logger       = logger;
     _locations    = new LocationRepo(appDbContext);
 }
Exemplo n.º 2
0
 public ListRepo(myScheduleContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
Exemplo n.º 3
0
 public LocationRepo(myScheduleContext appDbContext)
 {
     _appDbContext = appDbContext;
 }