create bill water

This commit is contained in:
hamid zarghami
2026-02-17 09:21:57 +03:30
parent 6238e3e1a7
commit 8eabcf419e
12 changed files with 300 additions and 98 deletions
+7
View File
@@ -0,0 +1,7 @@
import axios from "../../../config/axios";
import { CreateBillType } from "../types/Types";
export const createBill = async (params: CreateBillType) => {
const { data } = await axios.post("/bills/water", params);
return data;
};