Exemplo n.º 1
0
 public BlogItemsService(CoreAppSkeletonDbContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public CoreAppSkeletonData(CoreAppSkeletonDbContext context)
 {
     this.Context      = context;
     this.repositories = new Dictionary <Type, object>();
 }
 public CoreModelRepository(CoreAppSkeletonDbContext context)
 {
     _context = context;
 }
 public AuthController(CoreAppSkeletonDbContext context, SignInManager <User> signInManager)
 {
     _context       = context;
     _signInManager = signInManager;
 }