示例#1
0
 public Repository(TicketShopContext context)
 {
     _context = context;
 }
示例#2
0
 public EventService(EFRepository <Events> repository, TicketShopContext context)
 {
     _context    = context;
     _repository = repository;
 }
示例#3
0
 public EFRepository(TicketShopContext context)
 {
     Context = context;
 }
示例#4
0
 public LookupService(TicketShopContext context)
 {
     _context = context;
 }
示例#5
0
 public UsersController(TicketShopContext context)
 {
     _context = context;
 }
示例#6
0
 public ShowService(TicketShopContext context)
 {
     _context = context;
 }
示例#7
0
 public EventService(TicketShopContext context)
 {
     _context = context;
 }