コード例 #1
0
 public AccountService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext,
     IRoutinizeMemoryCache memoryCache
     ) : base(coreLogService, dbContext)
 {
     _memoryCache = memoryCache;
 }
コード例 #2
0
 public ChallengeService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext,
     IRoutinizeRedisCache redisCache
     ) : base(coreLogService, dbContext)
 {
     _redisCache = redisCache;
 }
コード例 #3
0
 protected DbServiceBase(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     )
 {
     _coreLogService = coreLogService;
     _dbContext      = dbContext;
 }
コード例 #4
0
 public RandomIdeaService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     )
 {
     _coreLogService = coreLogService;
     _dbContext      = _dbContext;
 }
コード例 #5
0
 public TaskFolderService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     ) : base(coreLogService, dbContext)
 {
 }
コード例 #6
0
 public DepartmentRoleService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     ) : base(coreLogService, dbContext)
 {
 }
コード例 #7
0
 public TaskRelationService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     ) : base(coreLogService, dbContext)
 {
 }
コード例 #8
0
 public NoteService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     ) : base(coreLogService, dbContext)
 {
 }
コード例 #9
0
 public CollaborationService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     ) : base(coreLogService, dbContext)
 {
 }
コード例 #10
0
 public ContentGroupService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     ) : base(coreLogService, dbContext)
 {
 }
コード例 #11
0
 public AttachmentService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     ) : base(coreLogService, dbContext)
 {
 }
コード例 #12
0
 public AuthenticationService(
     IRoutinizeCoreLogService coreLogService,
     RoutinizeDbContext dbContext
     ) : base(coreLogService, dbContext)
 {
 }