import IBIZSampleUIServiceBase from './ibizsample-ui-service-base';

/**
 * 示例数据库UI服务对象
 *
 * @export
 * @class IBIZSampleUIService
 */
export default class IBIZSampleUIService extends IBIZSampleUIServiceBase {

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

}