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