Пример #1
0
 public AccountController(IVolunteerService volunteerSvc, ICluster clusterSvc, IWebSecurityWrapper webSecurity, IMessageService messageService)
 {
     _clusterSvc = clusterSvc;
     _webSecurity = webSecurity;
     _volunteerSvc = volunteerSvc;
     _messageService = messageService;
 }
Пример #2
0
 public VolunteerController(IDisaster disasterSvc, ICluster clusterSvc, IAdmin adminSvc, IMessageService messageSvc, IVolunteerService volunteerSvc, IWebSecurityWrapper webSecurity)
 {
     _disasterSvc = disasterSvc;
     _clusterSvc = clusterSvc;
     _adminSvc = adminSvc;
     _messageSvc = messageSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity = webSecurity;
 }
 public OrganizationController(IVolunteerService volunteerService, IOrganizationService organizationService,
     IWebSecurityWrapper webSecurityWrapper, IMessageService messageService, IAdmin adminService, IDisaster disasterService) : base()
 {
     this.VolunteerService = volunteerService;
     this.OrganizationService = organizationService;
     this.WebSecurityWrapper = webSecurityWrapper;
     this.MessageService = messageService;
     this.AdminService = adminService;
     this.DisasterService = disasterService;
 }
Пример #4
0
 public HomeController(
     IDisaster disasterSvc,
     IVolunteerService volunteerSvc,
     IWebSecurityWrapper webSecurity,
     IClusterCoordinatorService clusterCoordinatorService,
     IVolunteerTypeService volunteerTypeService
     )
 {
     _disasterSvc = disasterSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity = webSecurity;
     _clusterCoordinatorService = clusterCoordinatorService;
     _volunteerTypes = volunteerTypeService;
 }
Пример #5
0
 public HomeController(
     IDisaster disasterSvc,
     IVolunteerService volunteerSvc,
     IWebSecurityWrapper webSecurity,
     IClusterCoordinatorService clusterCoordinatorService,
     IVolunteerTypeService volunteerTypeService,
     IDisasterClusterService disasterClusterService,
     IAdmin adminService
     )
 {
     _disasterSvc  = disasterSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity  = webSecurity;
     _clusterCoordinatorService = clusterCoordinatorService;
     _volunteerTypes            = volunteerTypeService;
     _disasterClusterSvc        = disasterClusterService;
     _adminService = adminService;
 }
Пример #6
0
 public ResourcesController(IWebSecurityWrapper webSecurity, IResource resourceSvc)
 {
     _webSecurity = webSecurity;
     _resourceSvc = resourceSvc;
 }
Пример #7
0
 public ScopesController(IScopeServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
Пример #8
0
 public AccountController(IAccountServiceLayer serviceLayer, IWebSecurityWrapper security, IEmailSender emailer)
 {
     _serviceLayer = serviceLayer;
     _security = security;
     _emailer = emailer;
 }
Пример #9
0
 public ResourcesController(IWebSecurityWrapper webSecurity, IResource resourceSvc, IDisaster disasterSvc)
 {
     _webSecurity = webSecurity;
     _resourceSvc = resourceSvc;
     _disasterSvc = disasterSvc;
 }
Пример #10
0
 public AccountController(IVolunteerService volunteerSvc, ICluster clusterSvc, IWebSecurityWrapper webSecurity, IMessageService messageService)
 {
     _clusterSvc     = clusterSvc;
     _webSecurity    = webSecurity;
     _volunteerSvc   = volunteerSvc;
     _messageService = messageService;
 }
Пример #11
0
 public RequestsController(IWebSecurityWrapper webSecurity, IRequest requestSvc)
 {
     _webSecurity = webSecurity;
     _requestSvc = requestSvc;
 }
Пример #12
0
 public BlackListController(IContactServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
Пример #13
0
 public UserController(IUserProfileServiceLayer service, IWebSecurityWrapper security, IEmailSender email)
 {
     _service = service;
     _security = security;
     _email = email;
 }
Пример #14
0
 public VolunteerController(IDisaster disasterSvc, ICluster clusterSvc, IAdmin adminSvc, IMessageService messageSvc, IVolunteerService volunteerSvc, IWebSecurityWrapper webSecurity)
 {
     _disasterSvc  = disasterSvc;
     _clusterSvc   = clusterSvc;
     _adminSvc     = adminSvc;
     _messageSvc   = messageSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity  = webSecurity;
 }
Пример #15
0
 public BaseController(IUsersRepository repository, IWebSecurityWrapper webSecurity)
 {
     usersRepository = repository;
     WebSecurity = webSecurity;
 }
 public BidPackageInvitationsController(IInvitationServiceLayer service, IWebSecurityWrapper security, INotificationSender notice)
 {
     _service = service;
     _security = security;
     _notice = notice;
 }
 public ContactRequestController(IContactServiceLayer service, IWebSecurityWrapper security, INotificationSender notice)
 {
     _service = service;
     _security = security;
     _notice = notice;
 }
Пример #18
0
 public ProjectsController(IProjectServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
Пример #19
0
 public CompanyController(ICompanyProfileServiceLayer serviceLayer, IWebSecurityWrapper security, IEmailSender email)
 {
     _security = security;
     _serviceLayer = serviceLayer;
     _email = email;
 }
Пример #20
0
 public ResourcesController(IWebSecurityWrapper webSecurity, IResource resourceSvc, IDisaster disasterSvc)
 {
     _webSecurity = webSecurity;
     _resourceSvc = resourceSvc;
     _disasterSvc = disasterSvc;
 }
Пример #21
0
 public HomeController(IDisaster disasterSvc, IVolunteer volunteerSvc, IWebSecurityWrapper webSecurity)
 {
     _disasterSvc = disasterSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity = webSecurity;
 }
Пример #22
0
 public PersonController(CrisisCheckin dbContext, IWebSecurityWrapper webSecurity)
 {
     DbContext   = dbContext;
     WebSecurity = webSecurity;
 }
 public ProjectProfferController(IInvitationServiceLayer service, IWebSecurityWrapper security, INotificationSender notice)
 {
     _service = service;
     _security = security;
     _notice = notice;
 }
Пример #24
0
 public BillController(IBillModelMapper billModelMapper, IBillService billService, IWebSecurityWrapper webSecurityWrapper)
 {
     this.billModelMapper    = billModelMapper;
     this.billService        = billService;
     this.webSecurityWrapper = webSecurityWrapper;
 }
 public ConnectionStatusController(IContactServiceLayer service, IWebSecurityWrapper security)
 {
     _security = security;
     _service = service;
 }
Пример #26
0
 public AuthService(IWebSecurityWrapper webSecurityWrapper)
 {
     _webSecurityWrapper = webSecurityWrapper;
 }
Пример #27
0
 public NotificationsController(INotificationServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
Пример #28
0
 public BidController(IBidServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
Пример #29
0
 public UserController(IUserProfileServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
Пример #30
0
 public HomeController(IUsersRepository repository, IWebSecurityWrapper webSecurity)
     : base(repository, webSecurity)
 {
 }
Пример #31
0
 public InvitationController(IInvitationServiceLayer service, IWebSecurityWrapper security, INotificationSender notify)
 {
     _service = service;
     _security = security;
     _notify = notify;
 }
Пример #32
0
 public PersonController(CrisisCheckin dbContext, IWebSecurityWrapper webSecurity)
 {
     DbContext = dbContext;
     WebSecurity = webSecurity;
 }
Пример #33
0
 public CompaniesController(ICompanyProfileServiceLayer service, IWebSecurityWrapper security)
 {
     _service = service;
     _security = security;
 }
Пример #34
0
 public RequestsController(IWebSecurityWrapper webSecurity, IRequest requestSvc)
 {
     _webSecurity = webSecurity;
     _requestSvc  = requestSvc;
 }
Пример #35
0
 public EntitiesController(CrisisCheckin ctx, IWebSecurityWrapper webSecurity)
 {
     _contextProvider = new CrisisCheckinContextProvider(ctx);
     _webSecurity     = webSecurity;
 }
Пример #36
0
 public HomeController(IDisaster disasterSvc, IVolunteerService volunteerSvc, IWebSecurityWrapper webSecurity)
 {
     _disasterSvc  = disasterSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity  = webSecurity;
 }
Пример #37
0
 public DocumentController(IProjectDocServiceLayer service, IWebSecurityWrapper security, INotificationSender notice)
 {
     _service = service;
     _security = security;
     _notice = notice;
 }
 public PaymentScheduleController(IPaymentScheduleService paymentScheduleService, IEventSummaryMapper eventSummaryMapper, IWebSecurityWrapper webSecurityWrapper)
 {
     this.paymentScheduleService = paymentScheduleService;
     this.eventSummaryMapper     = eventSummaryMapper;
     this.webSecurityWrapper     = webSecurityWrapper;
 }
Пример #39
0
 public AccountController(IAccountManager accountManager, ILookupManager lookupManager, IWebSecurityWrapper webSec)
 {
     accountMgr = accountManager;
     lookupMgr = lookupManager;
     webSecurity = webSec;
 }