public ConstructionWorksController(IConstructionWorksService constructionWorksService)
 {
     this.constructionWorksService = constructionWorksService;
 }
예제 #2
0
 public AssessmentsController(IAssessmentsService assessmentsService, IConstructionWorksService constructionWorksService)
 {
     this.assessmentsService       = assessmentsService;
     this.constructionWorksService = constructionWorksService;
 }