public AzureVolunteerService(IVolunteerService service)
     : base(service)
 {
     _store = CloudStorageAccount.Parse("")
         .CreateCloudBlobClient()
         .GetContainerReference("volunteers");
 }
Пример #2
0
 public AccountController(IVolunteerService volunteerSvc, ICluster clusterSvc, IWebSecurityWrapper webSecurity, IMessageService messageService)
 {
     _clusterSvc = clusterSvc;
     _webSecurity = webSecurity;
     _volunteerSvc = volunteerSvc;
     _messageService = messageService;
 }
Пример #3
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;
 }
Пример #5
0
 public HomeController(
     IDisaster disasterSvc,
     IVolunteerService volunteerSvc,
     IWebSecurityWrapper webSecurity,
     IClusterCoordinatorService clusterCoordinatorService,
     IVolunteerTypeService volunteerTypeService
     )
 {
     _disasterSvc = disasterSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity = webSecurity;
     _clusterCoordinatorService = clusterCoordinatorService;
     _volunteerTypes = volunteerTypeService;
 }
Пример #6
0
 public AccountController(IVolunteerService volunteerSvc, ICluster clusterSvc)
 {
     _clusterSvc = clusterSvc;
     _volunteerSvc = volunteerSvc;
 }
Пример #7
0
 public HomeController(IDisaster disasterSvc, IVolunteerService volunteerSvc, IWebSecurityWrapper webSecurity)
 {
     _disasterSvc = disasterSvc;
     _volunteerSvc = volunteerSvc;
     _webSecurity = webSecurity;
 }
 protected VolunteerServiceDecorator(IVolunteerService service)
 {
     _service = service;
 }
Пример #9
0
 public VolunteerController(IVolunteerService volunteerService)
 {
     this.volunteerService = volunteerService;
 }
Пример #10
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;
 }
        //private readonly ILogger _ILogger;



        public VolunteerController(IVolunteerService volunteerervice, IVolunteer_MessageService messageService)
        {
            _MessageService  = messageService;
            _Volunteerervice = volunteerervice;
        }