コード例 #1
0
 public myScheduleRepo(myScheduleContext appDbContext,
                       ILogger <myScheduleContext> logger)
 {
     _appDbContext = appDbContext;
     _logger       = logger;
     _locations    = new LocationRepo(appDbContext);
 }
コード例 #2
0
 public ListRepo(myScheduleContext appDbContext)
 {
     _appDbContext = appDbContext;
 }
コード例 #3
0
 public LocationRepo(myScheduleContext appDbContext)
 {
     _appDbContext = appDbContext;
 }