示例#1
0
 public ImageService(SwimteamDbContext swimteamDbContext)
 {
     _swimteamDb = swimteamDbContext;
 }
示例#2
0
 public CoachesController(SwimteamDbContext context)
 {
     _context = context;
 }
示例#3
0
 public ImageController(SwimteamDbContext context)
 {
     _context = context;
 }
示例#4
0
 public PracticeService(SwimteamDbContext swimteamDbContext)
 {
     _swimteamDb = swimteamDbContext;
     Practices   = _swimteamDb.Practices.ToList();
     Coaches     = _swimteamDb.Coaches.ToList();
 }