Пример #1
0
 public RemoveArticleHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public GetClaimsForUserHandler(IBlogServiceContext context)
 {
     _context = context;
 }
Пример #3
0
 public GetArticlesHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public GetDigitalAssetsHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Пример #5
0
 public GetUserByUsernameHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Пример #6
0
 public RemoveDigitalAssetHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public AuthenticateHandler(IBlogServiceContext context, IEncryptionService encryptionService)
 {
     _encryptionService = encryptionService;
     _context           = context;
 }
 public AddOrUpdateAuthorHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Пример #9
0
 public AddOrUpdateArticleHandler(IBlogServiceContext context, ICache cache, IMediator mediator)
 {
     _context  = context;
     _cache    = cache;
     _mediator = mediator;
 }
Пример #10
0
 public UserManager(IBlogServiceContext context)
 {
     _context = context;
 }
Пример #11
0
 public AddOrUpdateDigitalAssetHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public GetAuthorByIdHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }