예제 #1
0
 public FlyController(IFlyRepository flyRepo, UserManager <AppUser> userManager, FlyDbContext context)
 {
     _flyRepo     = flyRepo;
     _userManager = userManager;
     _context     = context;
 }
예제 #2
0
 public FlyService(IFlyRepository flyRepo)
 {
     _flyRepository = flyRepo;
 }
 public ComponentsController(IComponentRepository componentRepo, IFlyRepository flyRepo)
 {
     _componentRepo = componentRepo;
     _flyRepo       = flyRepo;
 }