Пример #1
0
 public AuthorController(DBRouteValueDictionary _routeDict, MyConfig myConfig,
                         IJWTService iJWTService)
 {
     routeDict        = _routeDict;
     this.myConfig    = myConfig;
     this.iJWTService = iJWTService;
 }
Пример #2
0
 public JWTHSAuthorizeMiddleware(RequestDelegate next,
                                 DBRouteValueDictionary routeDict,
                                 MyConfig myConfig)
 {
     this._next      = next;
     this.routeDict  = routeDict;
     jWTTokenOptions = myConfig.JWTTokenOptions;
 }
Пример #3
0
 public InterfaceController(IInterfaceDAL infterfaceDAL,
                            IFlowStepDAL flowStepDAL,
                            DBRouteValueDictionary _routeDict)
 {
     this.infterfaceDAL = infterfaceDAL;
     this.flowStepDAL   = flowStepDAL;
     this.routeDict     = _routeDict;
 }
Пример #4
0
 public InterfaceController(IInterfaceDAL infterfaceDAL,
                            DBRouteValueDictionary _routeDict,
                            IInterfaceBLL interfaceBLL,
                            IConfiguration config)
 {
     this.infterfaceDAL = infterfaceDAL;
     this.routeDict     = _routeDict;
     this.interfaceBLL  = interfaceBLL;
     this.config        = config;
 }