Example #1
0
 public EmailAccountFacade(IWeapsyDbContextFactory dbContextFactory,
                           ICacheManager cacheManager,
                           IMapper mapper)
 {
     _dbContextFactory = dbContextFactory;
     _cacheManager     = cacheManager;
     _mapper           = mapper;
 }
Example #2
0
 public LanguageFacade(IWeapsyDbContextFactory dbContextFactory,
                       ICacheManager cacheManager,
                       IMapper mapper)
 {
     _dbContextFactory = dbContextFactory;
     _cacheManager     = cacheManager;
     _mapper           = mapper;
 }
Example #3
0
 public MenuFacade(IWeapsyDbContextFactory dbContextFactory,
                   ICacheManager cacheManager,
                   IMapper mapper,
                   IRoleService roleService)
 {
     _dbContextFactory = dbContextFactory;
     _cacheManager     = cacheManager;
     _mapper           = mapper;
     _roleService      = roleService;
 }
Example #4
0
 public PageFacade(IWeapsyDbContextFactory dbContextFactory,
                   ICacheManager cacheManager,
                   IMapper mapper,
                   IRoleService roleService,
                   IPageInfoFactory pageViewFactory,
                   IPageAdminFactory pageAdminFactory)
 {
     _dbContextFactory = dbContextFactory;
     _cacheManager     = cacheManager;
     _mapper           = mapper;
     _roleService      = roleService;
     _pageViewFactory  = pageViewFactory;
     _pageAdminFactory = pageAdminFactory;
 }
Example #5
0
 public PageRepository(IWeapsyDbContextFactory dbContextFactory, IMapper mapper)
 {
     _dbContextFactory = dbContextFactory;
     _mapper           = mapper;
 }
Example #6
0
 public PageAdminFactory(IWeapsyDbContextFactory dbContextFactory,
                         IRoleService roleService)
 {
     _dbContextFactory = dbContextFactory;
     _roleService      = roleService;
 }
Example #7
0
 public SiteEventsHandler(IWeapsyDbContextFactory dbContextFactory,
                          ICacheManager cacheManager)
 {
     _dbContextFactory = dbContextFactory;
     _cacheManager     = cacheManager;
 }
Example #8
0
 public AppFacade(IWeapsyDbContextFactory dbContextFactory, IMapper mapper)
 {
     _dbContextFactory = dbContextFactory;
     _mapper           = mapper;
 }