export class Representative {
    constructor(
        public representativeId: number,
        public name: string,
        public phone: number,
        public email: string
    ) { }
}