예제 #1
0
 public LookupController(ICompanyTypeManager companyTypeManager, ICategoryManager categoryManager,
                         ISubCategoryManager subCategoryManager, IContactUsManager contactUsManager,
                         IDeviceDetailsManager deviceDetailsManager)
 {
     this.companyTypeManager   = companyTypeManager;
     this.categoryManager      = categoryManager;
     this.subCategoryManager   = subCategoryManager;
     this.contactUsManager     = contactUsManager;
     this.deviceDetailsManager = deviceDetailsManager;
 }
 public HubSpotCompanyConnector(IHubSpotClient client, ICompanyTypeManager typeManager)
 {
     _client      = client ?? throw new ArgumentNullException(nameof(client));
     _typeManager = typeManager ?? throw new ArgumentNullException(nameof(typeManager));
 }