Exemple #1
0
 public LoggingService(IAppIdentityContext identityContext)
 {
     this._identityContext = identityContext as AppIdentityContext;
 }
 public BaseAccountController(IDbContext appContext, IAppIdentityContext identityContext)
     : base(appContext, identityContext)
 {
 }
Exemple #3
0
 public AccountController(IHM1Context appContext, IAppIdentityContext identityContext)
     : base(appContext, identityContext)
 {
 }
 public SearchController(IS1Context appContext, IAppIdentityContext identityContext, ISearchService searchService)
     : base(appContext, identityContext, searchService)
 {
 }
 public AppApiController(IDbContext appContext, IAppIdentityContext identityContext)
 {
     _appContext      = appContext;
     _identityContext = identityContext;
 }
 public IdentityContextInitializeService(IAppIdentityContext context)
 {
     this._context = context as AppIdentityContext;
 }
Exemple #7
0
 public BaseSearchController(IDbContext appContext, IAppIdentityContext identityContext, ISearchService searchService)
     : base(appContext, identityContext)
 {
     _searchService = searchService;
 }