コード例 #1
0
ファイル: Repository.cs プロジェクト: schrutek/SPG_POS
 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
ファイル: UsersController.cs プロジェクト: schrutek/SPG_POS
 public UsersController(TicketShopContext context)
 {
     _context = context;
 }
コード例 #6
0
 public ShowService(TicketShopContext context)
 {
     _context = context;
 }
コード例 #7
0
ファイル: EventService.cs プロジェクト: schrutek/SPG_POS
 public EventService(TicketShopContext context)
 {
     _context = context;
 }