public CustomerCompanyController( ICustomerCompanyService CustomerCompanyService , IRelationCateService RelationCateService , ICustomerCateService CustomerCateService , ICityCateService CityCateService , IIndustryCateService IndustryCateService , ICustomerService CustomerService , ITraceLogService TraceLogService , ICustomerShareService CustomerShareService , IMemberService MemberService , IPermissionsService PermissionsService , IContactRequireService ContactRequireService , IPlanLogService PlanLogService ) { this.CustomerCompanyService = CustomerCompanyService; this.RelationCateService = RelationCateService; this.CustomerCateService = CustomerCateService; this.CityCateService = CityCateService; this.IndustryCateService = IndustryCateService; this.CustomerService = CustomerService; this.TraceLogService = TraceLogService; this.CustomerShareService = CustomerShareService; this.MemberService = MemberService; this.PermissionsService = PermissionsService; this.ContactRequireService = ContactRequireService; this.PlanLogService = PlanLogService; }
public CustomerCompanyService(IUnitOfWork db , ITraceLogService TraceLogService , IPermissionsService PermissionsService , IMemberService MemberService , ICustomerShareService CustomerShareService ) { this.db = db; this.TraceLogService = TraceLogService; this.PermissionsService = PermissionsService; this.MemberService = MemberService; this.CustomerShareService = CustomerShareService; }
public TraceLogController( ICustomerCompanyService CustomerCompanyService , IRelationCateService RelationCateService , ICustomerCateService CustomerCateService , ICityCateService CityCateService , IIndustryCateService IndustryCateService , ICustomerService CustomerService , ITraceLogService TraceLogService , ICustomerShareService CustomerShareService ) { this.CustomerCompanyService = CustomerCompanyService; this.RelationCateService = RelationCateService; this.CustomerCateService = CustomerCateService; this.CityCateService = CityCateService; this.IndustryCateService = IndustryCateService; this.CustomerService = CustomerService; this.TraceLogService = TraceLogService; this.CustomerShareService = CustomerShareService; }
public TraceLogsController(ITraceLogService traceLogService) { _traceLogService = traceLogService; }