Beispiel #1
0
 public QuarztScheduleService(FastDbContext dbContext,
                              IMapper mapper,
                              JobCenter jobCenter)
 {
     _jobCenter = jobCenter;
     _mapper    = mapper;
     _dbContext = dbContext;
 }
 public SysUserLoginService(FastDbContext dbContext,
                            IMapper mapper,
                            ActivityLogService activityLogService)
 {
     _activityLogService = activityLogService;
     _mapper             = mapper;
     _dbContext          = dbContext;
 }
Beispiel #3
0
 public SysCategoryService(ICacheManager cacheManager,
                           FastDbContext dbContext,
                           IMapper mapper)
 {
     _mapper       = mapper;
     _dbContext    = dbContext;
     _cacheManager = cacheManager;
 }
Beispiel #4
0
 public QuartzStartup(JobCenter jobCenter,
                      IMapper mapper,
                      FastDbContext dbContext)
 {
     _mapper    = mapper;
     _dbContext = dbContext;
     _jobCenter = jobCenter;
 }
Beispiel #5
0
 public BucketService(ICacheManager cacheManager,
                      FastDbContext dbContext,
                      ActivityLogService activityLogService,
                      IMapper mapper)
 {
     _activityLogService = activityLogService;
     _mapper             = mapper;
     _dbContext          = dbContext;
     _cacheManager       = cacheManager;
 }
Beispiel #6
0
 public SysUserService(ICacheManager cacheManager,
                       FastDbContext dbContext,
                       IWebHelper webHelper,
                       ActivityLogService activityLogService,
                       IMapper mapper)
 {
     _activityLogService = activityLogService;
     _mapper             = mapper;
     _webHelper          = webHelper;
     _dbContext          = dbContext;
     _cacheManager       = cacheManager;
 }
Beispiel #7
0
 public SysRoleService(ICacheManager cacheManager,
                       FastDbContext dbContext,
                       IMapper mapper,
                       ILogger <SysRoleService> logger,
                       ActivityLogService activityLogService)
 {
     _activityLogService = activityLogService;
     _mapper             = mapper;
     _dbContext          = dbContext;
     _cacheManager       = cacheManager;
     _logger             = logger;
 }
Beispiel #8
0
 public SysNLogService(FastDbContext dbContext,
                       IMapper mapper)
 {
     _mapper    = mapper;
     _dbContext = dbContext;
 }
Beispiel #9
0
 public BucketImageService(FastDbContext dbContext,
                           IMapper mapper)
 {
     _mapper    = mapper;
     _dbContext = dbContext;
 }
Beispiel #10
0
 public StudentsController(FastDbContext context)
 {
     _context = context;
 }
Beispiel #11
0
 public ActivityLogService(IMapper mapper,
                           FastDbContext dbContext)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
Beispiel #12
0
 public SysActivityLogCommentService(FastDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Beispiel #13
0
 public SettingService(ICacheManager cacheManager,
                       FastDbContext dbContext)
 {
     _dbContext    = dbContext;
     _cacheManager = cacheManager;
 }