コード例 #1
0
 public ProjectsController(IProjectManagementService projectManagementService,
                           IProjectsService projectsService,
                           IPurchaseOrdersService purchaseOrdersService,
                           IProjectTemplatesService projectTemplatesService,
                           ISitesService sitesService,
                           IPOsService pOsService,
                           IInvoicesService invoicesService,
                           IJobsService jobsService)
 {
     this.projectManagementService = projectManagementService;
     this.projectsService          = projectsService;
     this.purchaseOrdersService    = purchaseOrdersService;
     this.projectTemplatesService  = projectTemplatesService;
     this.sitesService             = sitesService;
     this.pOsService      = pOsService;
     this.invoicesService = invoicesService;
     this.jobsService     = jobsService;
 }
コード例 #2
0
 public ContractsController(ISitesService sitesService,
                            ILeaseContractsService leaseContractsService,
                            ISitesLookupService sitesLookupService,
                            ICULsService cULsService,
                            IPOsService pOsService,
                            IJobsService jobsService,
                            IElementsService elementsService,
                            IBOQService bOQService)
 {
     this.sitesService          = sitesService;
     this.leaseContractsService = leaseContractsService;
     this.sitesLookupService    = sitesLookupService;
     this.cULsService           = cULsService;
     this.pOsService            = pOsService;
     this.jobsService           = jobsService;
     this.elementsService       = elementsService;
     this.bOQService            = bOQService;
 }
コード例 #3
0
 public TasksController(ITasksService tasksService, IPOsService pOsService)
 {
     this.tasksService = tasksService;
     this.pOsService   = pOsService;
 }
コード例 #4
0
 public POsController(IPOsService pOsService)
 {
     this.pOsService = pOsService;
 }