Exemplo n.º 1
0
 public OrdenesRepository(IServicesDBContext ctx)
 {
     this.ctx = ctx;
 }
Exemplo n.º 2
0
 public UsuariosRepository(IServicesDBContext ctx)
 {
     this.ctx     = ctx;
     _userManager = new UserManager <IdentityUser>(new UserStore <IdentityUser>(ctx as System.Data.Entity.DbContext));
 }