import { ICompanyContacts } from './ICompanyContacts'; import { ICountry } from './ICountry'; import { IState } from './IState'; import { IContactDetails } from './IContactDetails'; import { IContactPositions } from './IContactPositions'; export interface ICompanyDetails { Companyid?: number; CompanyName?: string; Code?: string; Website?: string; Industry?: string; Phone?: string; Owner?: string; Type?: string; Address?: string; Address2?: string; CityName?: string; PostalCode?: string; NoOfEmployee?: number; TimeZone?: string; Description?: string; Logo?: string; ContactDetails?: IContactDetails; CompanyContacts?: ICompanyContacts; ContactPositions?: IContactPositions; Country?: ICountry; State?: IState; StaffID?: number; }