예제 #1
0
 public SysUserLoginService(FastDbContext dbContext,
                            IMapper mapper,
                            ActivityLogService activityLogService)
 {
     _activityLogService = activityLogService;
     _mapper             = mapper;
     _dbContext          = dbContext;
 }
예제 #2
0
 public BucketService(ICacheManager cacheManager,
                      FastDbContext dbContext,
                      ActivityLogService activityLogService,
                      IMapper mapper)
 {
     _activityLogService = activityLogService;
     _mapper             = mapper;
     _dbContext          = dbContext;
     _cacheManager       = cacheManager;
 }
예제 #3
0
 public SysUserService(ICacheManager cacheManager,
                       FastDbContext dbContext,
                       IWebHelper webHelper,
                       ActivityLogService activityLogService,
                       IMapper mapper)
 {
     _activityLogService = activityLogService;
     _mapper             = mapper;
     _webHelper          = webHelper;
     _dbContext          = dbContext;
     _cacheManager       = cacheManager;
 }
예제 #4
0
 public SysRoleService(ICacheManager cacheManager,
                       FastDbContext dbContext,
                       IMapper mapper,
                       ILogger <SysRoleService> logger,
                       ActivityLogService activityLogService)
 {
     _activityLogService = activityLogService;
     _mapper             = mapper;
     _dbContext          = dbContext;
     _cacheManager       = cacheManager;
     _logger             = logger;
 }