public AgenciesController(IUsersService usersService, IAgenciesService agenciesService,
     IPaymentDetailsService paymentService, IUsersRolesService rolesService, IInvoicesService invoicesService)
 {
     this.usersService = usersService;
     this.agenciesService = agenciesService;
     this.paymentService = paymentService;
     this.rolesService = rolesService;
     this.invoicesService = invoicesService;
 }
Ejemplo n.º 2
0
 public AgenciesController(IUsersService usersService, IAgenciesService agenciesService,
                           IPaymentDetailsService paymentService, IUsersRolesService rolesService, IInvoicesService invoicesService)
 {
     this.usersService    = usersService;
     this.agenciesService = agenciesService;
     this.paymentService  = paymentService;
     this.rolesService    = rolesService;
     this.invoicesService = invoicesService;
 }
Ejemplo n.º 3
0
 public PaymentDetailsForClientsController
 (
     IPaymentDetailsService paymentDetails,
     IService <PaymentDetails> service
 )
 {
     _paymentDetials = paymentDetails;
     _service        = service;
 }
Ejemplo n.º 4
0
 public ProjectSummaryService(IDataContextFactory dataContextFactory, IProjectResourceService projectResourceService,
                              IGenericService genericService, IProjectComplaintService projectComplaintService, IPaymentDetailsService paymentDetailsService,
                              IChangeRequestDetailsService changeRequestDetailsService, IInfrastructureDetailsService infrastructureDetailsService,
                              IProjectService projectService, IProjectMappingService projectMappingService
                              )
 {
     this.context                  = dataContextFactory.Create(ConnectionType.Ip);
     _projectResourceService       = projectResourceService;
     _projectComplaintService      = projectComplaintService;
     _genericService               = genericService;
     _paymentDetailsService        = paymentDetailsService;
     _changeRequestDetailsService  = changeRequestDetailsService;
     _infrastructureDetailsService = infrastructureDetailsService;
     _projectService               = projectService;
     _projectMappingService        = projectMappingService;
 }
Ejemplo n.º 5
0
 public UserController(IProjectService projectService, IMappingService mappingService, IProjectSummaryService projectSummaryService,
                       ICookieHelper cookieHelper, IProjectResourceService projectResourceService, IActiveDirectoryService activeDirectoryService,
                       IProjectComplaintService projectComplaintService, IGenericService genericService, IPaymentDetailsService paymentDetailsService,
                       IChangeRequestDetailsService changeRequestDetailsService, IInfrastructureDetailsService infrastructureDetailsService,
                       IUserDashboardService userDashboardService, ITrackerHub itrackerHub
                       )
 {
     this._projectService               = projectService;
     this._mappingService               = mappingService;
     this._projectSummaryService        = projectSummaryService;
     this._cookieHelper                 = cookieHelper;
     this._projectResourceService       = projectResourceService;
     this._activeDirectoryService       = activeDirectoryService;
     this._projectComplaintService      = projectComplaintService;
     this._genericService               = genericService;
     this._paymentDetailsService        = paymentDetailsService;
     this._changeRequestDetailsService  = changeRequestDetailsService;
     this._infrastructureDetailsService = infrastructureDetailsService;
     this._userDashboardService         = userDashboardService;
     this._itrackerHub = itrackerHub;
 }
 public RateAvailabilityService(IPaymentDetailsService paymentDetailsService, ICancellationPolicyService cancellationPolicyService)
 {
     _cancellationPolicyService = cancellationPolicyService;
     _paymentDetailsService     = paymentDetailsService;
 }
 public PaymentDetailsController(IPaymentDetailsService paymentDetailsService)
 {
     _paymentDetailsService = paymentDetailsService;
 }