public AuthorizationController(IJWTAuth iJWTAuth, IDepartmentDataService departmentDataService, IFunctionPowerDataService powerDataService, IRoleDataService roleDataService, IAppInfoDataService appInfoDataService) : base(iJWTAuth)
 {
     this.departmentDataService = departmentDataService;
     this.powerDataService      = powerDataService;
     this.roleDataService       = roleDataService;
     this.appInfoDataService    = appInfoDataService;
 }
 public FunctionPowerController(IJWTAuth auth, IFunctionPowerDataService functionPowerDataService, IAppInfoDataService appInfoDataService) : base(auth)
 {
     this.functionPowerDataService = functionPowerDataService;
     this.appInfoDataService       = appInfoDataService;
 }