public AccountController(IVolunteerService volunteerSvc, ICluster clusterSvc, IWebSecurityWrapper webSecurity, IMessageService messageService) { _clusterSvc = clusterSvc; _webSecurity = webSecurity; _volunteerSvc = volunteerSvc; _messageService = messageService; }
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; }
public HomeController( IDisaster disasterSvc, IVolunteerService volunteerSvc, IWebSecurityWrapper webSecurity, IClusterCoordinatorService clusterCoordinatorService, IVolunteerTypeService volunteerTypeService ) { _disasterSvc = disasterSvc; _volunteerSvc = volunteerSvc; _webSecurity = webSecurity; _clusterCoordinatorService = clusterCoordinatorService; _volunteerTypes = volunteerTypeService; }
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; }
public ResourcesController(IWebSecurityWrapper webSecurity, IResource resourceSvc) { _webSecurity = webSecurity; _resourceSvc = resourceSvc; }
public ScopesController(IScopeServiceLayer service, IWebSecurityWrapper security) { _service = service; _security = security; }
public AccountController(IAccountServiceLayer serviceLayer, IWebSecurityWrapper security, IEmailSender emailer) { _serviceLayer = serviceLayer; _security = security; _emailer = emailer; }
public ResourcesController(IWebSecurityWrapper webSecurity, IResource resourceSvc, IDisaster disasterSvc) { _webSecurity = webSecurity; _resourceSvc = resourceSvc; _disasterSvc = disasterSvc; }
public RequestsController(IWebSecurityWrapper webSecurity, IRequest requestSvc) { _webSecurity = webSecurity; _requestSvc = requestSvc; }
public BlackListController(IContactServiceLayer service, IWebSecurityWrapper security) { _service = service; _security = security; }
public UserController(IUserProfileServiceLayer service, IWebSecurityWrapper security, IEmailSender email) { _service = service; _security = security; _email = email; }
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; }
public ProjectsController(IProjectServiceLayer service, IWebSecurityWrapper security) { _service = service; _security = security; }
public CompanyController(ICompanyProfileServiceLayer serviceLayer, IWebSecurityWrapper security, IEmailSender email) { _security = security; _serviceLayer = serviceLayer; _email = email; }
public HomeController(IDisaster disasterSvc, IVolunteer volunteerSvc, IWebSecurityWrapper webSecurity) { _disasterSvc = disasterSvc; _volunteerSvc = volunteerSvc; _webSecurity = webSecurity; }
public PersonController(CrisisCheckin dbContext, IWebSecurityWrapper webSecurity) { DbContext = dbContext; WebSecurity = webSecurity; }
public ProjectProfferController(IInvitationServiceLayer service, IWebSecurityWrapper security, INotificationSender notice) { _service = service; _security = security; _notice = notice; }
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; }
public AuthService(IWebSecurityWrapper webSecurityWrapper) { _webSecurityWrapper = webSecurityWrapper; }
public NotificationsController(INotificationServiceLayer service, IWebSecurityWrapper security) { _service = service; _security = security; }
public BidController(IBidServiceLayer service, IWebSecurityWrapper security) { _service = service; _security = security; }
public UserController(IUserProfileServiceLayer service, IWebSecurityWrapper security) { _service = service; _security = security; }
public HomeController(IUsersRepository repository, IWebSecurityWrapper webSecurity) : base(repository, webSecurity) { }
public InvitationController(IInvitationServiceLayer service, IWebSecurityWrapper security, INotificationSender notify) { _service = service; _security = security; _notify = notify; }
public CompaniesController(ICompanyProfileServiceLayer service, IWebSecurityWrapper security) { _service = service; _security = security; }
public EntitiesController(CrisisCheckin ctx, IWebSecurityWrapper webSecurity) { _contextProvider = new CrisisCheckinContextProvider(ctx); _webSecurity = webSecurity; }
public HomeController(IDisaster disasterSvc, IVolunteerService volunteerSvc, IWebSecurityWrapper webSecurity) { _disasterSvc = disasterSvc; _volunteerSvc = volunteerSvc; _webSecurity = webSecurity; }
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; }
public AccountController(IAccountManager accountManager, ILookupManager lookupManager, IWebSecurityWrapper webSec) { accountMgr = accountManager; lookupMgr = lookupManager; webSecurity = webSec; }