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