Exemplo n.º 1
0
 public RemoveArticleHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public GetClaimsForUserHandler(IBlogServiceContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public GetArticlesHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public GetDigitalAssetsHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Exemplo n.º 5
0
 public GetUserByUsernameHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
Exemplo n.º 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;
 }
Exemplo n.º 9
0
 public AddOrUpdateArticleHandler(IBlogServiceContext context, ICache cache, IMediator mediator)
 {
     _context  = context;
     _cache    = cache;
     _mediator = mediator;
 }
Exemplo n.º 10
0
 public UserManager(IBlogServiceContext context)
 {
     _context = context;
 }
Exemplo n.º 11
0
 public AddOrUpdateDigitalAssetHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public GetAuthorByIdHandler(IBlogServiceContext context, ICache cache)
 {
     _context = context;
     _cache   = cache;
 }