コード例 #1
0
 public OrdenesRepository(IServicesDBContext ctx)
 {
     this.ctx = ctx;
 }
コード例 #2
0
 public UsuariosRepository(IServicesDBContext ctx)
 {
     this.ctx     = ctx;
     _userManager = new UserManager <IdentityUser>(new UserStore <IdentityUser>(ctx as System.Data.Entity.DbContext));
 }