import { Knex } from "knex"; import businessappDAO from "../../dao/core/businessapp" class BusinessAppService{ async createBusinessApp(trx:Knex.Transaction,data:any){ const response = await businessappDAO.createBusinessApp(trx,data); return response; } } export default new BusinessAppService();