Ejemplo n.º 1
0
 public BucketItemsController(BucketListContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public ProfileController()
 {
     _context = new BucketListContext();
 }
Ejemplo n.º 3
0
 public UsersController()
 {
     _context = new BucketListContext();
 }
 public ResetPasswordController()
 {
     _context = new BucketListContext();
 }
Ejemplo n.º 5
0
 public HomeController(BucketListContext bucketListContext)
 {
     _bucketListContext = bucketListContext;
 }
 public BucketListRepository(BucketListContext bucketListContext)
 {
     this.bucketListContext = bucketListContext;
 }
Ejemplo n.º 7
0
        protected BucketListContext GetDbContext(bool useTestDb = false)
        {
            var dbContext = new BucketListContext(useTestDb);

            return(dbContext);
        }