コード例 #1
0
ファイル: MarkService.cs プロジェクト: lulzzz/DocumentsKM
        public MarkService(
            IMarkRepo markRepo,
            ISubnodeRepo subnodeRepo,
            IDepartmentRepo departmentRepo,
            IEmployeeRepo employeeRepo,
            ISpecificationService specificationService)
        {
            _repository     = markRepo;
            _subnodeRepo    = subnodeRepo;
            _departmentRepo = departmentRepo;
            _employeeRepo   = employeeRepo;

            _specificationService = specificationService;
        }
コード例 #2
0
 public MarkService(
     IMarkRepo markRepo,
     ISubnodeRepo subnodeRepo,
     IDepartmentRepo departmentRepo,
     IEmployeeRepo employeeRepo,
     IEstimateTaskRepo estimateTaskRepo,
     ISpecificationService specificationService,
     IMarkGeneralDataPointService markGeneralDataPointService)
 {
     _repository                  = markRepo;
     _subnodeRepo                 = subnodeRepo;
     _departmentRepo              = departmentRepo;
     _employeeRepo                = employeeRepo;
     _estimateTaskRepo            = estimateTaskRepo;
     _specificationService        = specificationService;
     _markGeneralDataPointService = markGeneralDataPointService;
 }
コード例 #3
0
 public SubnodeService(ISubnodeRepo subnodeRepo)
 {
     _repository = subnodeRepo;
 }