Exemplo n.º 1
0
 public TrailsService(hhDbContext context)
 {
     this.context = context;
 }
Exemplo n.º 2
0
 public Repository(hhDbContext context)
 {
     this.context = context;
     entities     = context.Set <T>();
 }
 public Handler(hhDbContext context, UserManager <User> userManager, IEmailService emailService)
 {
     this.emailService = emailService;
     this.userManager  = userManager;
     this.context      = context;
 }