Esempio n. 1
0
 public UserService(AssetTrackerContext context) : base(context)
 {
     _repository = new UserRepository(context);
 }
 public OrganizationRepository(AssetTrackerContext context) : base(context)
 {
 }
Esempio n. 3
0
 public AssetService(AssetTrackerContext context) : base(context)
 {
     _repository = new AssetRepository(context);
 }
Esempio n. 4
0
 public TypeRepository(AssetTrackerContext context) : base(context)
 {
 }
Esempio n. 5
0
 public OrganizationService(AssetTrackerContext context) : base(context)
 {
     _repository     = new OrganizationRepository(context);
     _userRepository = new UserRepository(context);
 }
Esempio n. 6
0
 public StatusRepository(AssetTrackerContext context) : base(context)
 {
 }
Esempio n. 7
0
 public UserRepository(AssetTrackerContext context) : base(context)
 {
 }