public SharedService(Mastex_AppContext db)
 {
     _db = db;
 }
 public ProjectService(Mastex_AppContext context, IUserService userService, ISharedService sharedService)
 {
     _db            = context;
     _userService   = userService;
     _sharedService = sharedService;
 }
Beispiel #3
0
 public TaskService(Mastex_AppContext db) : base(db)
 {
 }
 public UserService(Mastex_AppContext db)
 {
     _db = db;
 }