Example #1
0
 public AjaxServiceController(
     IIndustryCateService IndustryCateService
     , ICityCateService CityCateService
     , ICustomerCompanyService CustomerCompanyService
     , IRelationCateService RelationCateService
     , ICustomerCateService CustomerCateService
     , IMemberService MemberService
     , IDepartmentService DepartmentService
     , IPermissionsService PermissionsService
     , IJobTitleCateService JobTitleCateService
     , IJobCateService JobCateService
     , IContractCateService ContractCateService
     )
 {
     this.IndustryCateService = IndustryCateService;
     this.CityCateService = CityCateService;
     this.CustomerCompanyService = CustomerCompanyService;
     this.RelationCateService = RelationCateService;
     this.CustomerCateService = CustomerCateService;
     this.MemberService = MemberService;
     this.DepartmentService = DepartmentService;
     this.PermissionsService = PermissionsService;
     this.JobTitleCateService = JobTitleCateService;
     this.JobCateService = JobCateService;
     this.ContractCateService = ContractCateService;
 }
Example #2
0
 public ContractInfoController(
   IMemberService MemberService
     , IGroupService GroupService
     , IDepartmentService DepartmentService
     , IContactRequireService ContactRequireService
     , IContractInfoService ContractInfoService
     , IContractCateService ContractCateService
     )
 {
     this.MemberService = MemberService;
     this.GroupService = GroupService;
     this.DepartmentService = DepartmentService;
     this.ContactRequireService = ContactRequireService;
     this.ContractInfoService = ContractInfoService;
     this.ContractCateService = ContractCateService;
 }
Example #3
0
 public ContractCateController(
      IContractCateService _ContractService
   )
 {
     ContractService = _ContractService;
 }