示例#1
0
 public FlightLogController(ApplicationDbContext db, IFlightLogService flightLog, IStatisticsService stats)
 {
     _db        = db;
     _flightLog = flightLog;
     _stats     = stats;
 }
 public UserService(ApplicationDbContext db, IFlightLogService flight)
 {
     _db     = db;
     _flight = flight;
 }