コード例 #1
0
 public UsersAPIController(TMShopsContext context)
 {
     _context = context;
 }
コード例 #2
0
 public ModulesAPIController(TMShopsContext context)
 {
     _context = context;
 }
コード例 #3
0
 public ProfileAPIController(TMShopsContext context)
 {
     _context = context;
 }
コード例 #4
0
 public SettingsController(TMShopsContext context)
 {
     _context = context;
 }
コード例 #5
0
 public BillRepository(TMShopsContext context) : base(context)
 {
 }
コード例 #6
0
 public UsersRepository(TMShopsContext context) : base(context)
 {
 }
コード例 #7
0
 public SubItemRepository(TMShopsContext context) : base(context)
 {
 }
コード例 #8
0
 public SubRolesRepository(TMShopsContext context) : base(context)
 {
 }
コード例 #9
0
 public SettingsRepository(TMShopsContext context) : base(context)
 {
 }
コード例 #10
0
 public ModulesRepository(TMShopsContext context) : base(context)
 {
 }
コード例 #11
0
 public GroupRepository(TMShopsContext context) : base(context)
 {
 }
コード例 #12
0
 public CustomersRepository(TMShopsContext context) : base(context)
 {
 }
コード例 #13
0
 public EntityBaseRepository(TMShopsContext context)
 {
     _context = context;
 }