Example #1
0
 public UnitOfWork(TSCDbContext context)
 {
     this.context = context;
 }
Example #2
0
 public TicketRepository(TSCDbContext context) : base(context)
 {
     this.context = context;
 }
Example #3
0
 public GroupRepository(TSCDbContext context,
                        UserManager <ApplicationUser> userManager) : base(context)
 {
     this.context = context;
     _userManager = userManager;
 }