Example #1
0
 public RouteService(NgCmsContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #2
0
 public UserService(NgCmsContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #3
0
 public AccountController(NgCmsContext dbContext)
 {
     _userService = new UserService(dbContext);
     _roleService = new RoleService(dbContext);
 }
Example #4
0
 public AuthorizationController(NgCmsContext dbContext)
 {
     _roleService = new RoleService(dbContext);
     _userService = new UserService(dbContext);
 }
Example #5
0
 public RouteController(NgCmsContext dbContext)
 {
     _routeService = new RouteService(dbContext);
 }