コード例 #1
0
ファイル: EmailService.cs プロジェクト: rajuchapagain/Chamber
 public EmailService(ILoggingService loggingService, ISettingsService settingsService, IChamberContext context)
 {
     _loggingService  = loggingService;
     _settingsService = settingsService;
     _context         = context as ChamberContext;
 }
コード例 #2
0
 public UnitOfWorkManager(IChamberContext context)
 {
     Database.SetInitializer(new MigrateDatabaseToLatestVersion <ChamberContext, Configuration>(SiteConstants.Instance.ChamberContext));
     _context = context as ChamberContext;
 }
コード例 #3
0
 public BusinessService(IChamberContext context, IActivityService activityService, ISettingsService settingsService)
 {
     _context         = context as ChamberContext;
     _activityService = activityService;
     _settingsService = settingsService;
 }
コード例 #4
0
 public ClassificationService(IChamberContext context, IActivityService activityService)
 {
     _context         = context as ChamberContext;
     _activityService = activityService;
 }
コード例 #5
0
 public SettingsService(IChamberContext context, ICacheService cacheService)
 {
     _cacheService = cacheService;
     _context      = context as ChamberContext;
 }
コード例 #6
0
ファイル: RoleService.cs プロジェクト: rajuchapagain/Chamber
 public RoleService(IChamberContext context)
 {
     _context = context as ChamberContext;
 }
コード例 #7
0
 public MembershipLevelService(IChamberContext context, IActivityService activityService)
 {
     _context         = context as ChamberContext;
     _activityService = activityService;
 }
コード例 #8
0
 public MembershipService(IChamberContext context, IActivityService activityService, ISettingsService settingsService)
 {
     _activityService = activityService;
     _settingsService = settingsService;
     _context         = context as ChamberContext;
 }
コード例 #9
0
 public ActivityService(ILoggingService loggingService, IChamberContext context)
 {
     _loggingService = loggingService;
     _context        = context as ChamberContext;
 }