コード例 #1
0
 public BlogItemsService(CoreAppSkeletonDbContext context)
 {
     _context = context;
 }
コード例 #2
0
 public CoreAppSkeletonData(CoreAppSkeletonDbContext context)
 {
     this.Context      = context;
     this.repositories = new Dictionary <Type, object>();
 }
コード例 #3
0
 public CoreModelRepository(CoreAppSkeletonDbContext context)
 {
     _context = context;
 }
コード例 #4
0
 public AuthController(CoreAppSkeletonDbContext context, SignInManager <User> signInManager)
 {
     _context       = context;
     _signInManager = signInManager;
 }