Пример #1
0
 public CommunityGroupsService(EFDbContext context
                               , IAWSS3Bucket awsS3Bucket
                               , IOpenOfficeHoursService openOfficeHoursService)
 {
     _unitOfWork             = new UnitOfWork(context);
     _context                = context;
     _awsS3Bucket            = awsS3Bucket;
     _openOfficeHoursService = openOfficeHoursService;
 }
Пример #2
0
 public CommunityOpenOfficeHoursController(IOpenOfficeHoursService openOfficeHoursService
                                           , ClaimAccessor claimAccessor
                                           , IOpenHoursMailService openHoursMailService
                                           , IHostingEnvironment env
                                           )
 {
     _openOfficeHoursService = openOfficeHoursService;
     _claimAccessor          = claimAccessor;
     _openHoursMailService   = openHoursMailService;
     _env = env;
 }