public ConstructionWorksController(IConstructionWorksService constructionWorksService)
 {
     this.constructionWorksService = constructionWorksService;
 }
Exemplo n.º 2
0
 public AssessmentsController(IAssessmentsService assessmentsService, IConstructionWorksService constructionWorksService)
 {
     this.assessmentsService       = assessmentsService;
     this.constructionWorksService = constructionWorksService;
 }