import IBIZCustomerUIServiceBase from './ibizcustomer-ui-service-base';

/**
 * 客户UI服务对象
 *
 * @export
 * @class IBIZCustomerUIService
 */
export default class IBIZCustomerUIService extends IBIZCustomerUIServiceBase {

    /**
     * Creates an instance of  IBIZCustomerUIService.
     * 
     * @param {*} [opts={}]
     * @memberof  IBIZCustomerUIService
     */
    constructor(opts: any = {}) {
        super(opts);
    }

}