dded delete functionality for Expense Type using ID

This commit is contained in:
pramod mahajan 2025-07-26 00:06:47 +05:30
parent f1b652ace1
commit a0e063ac9a

View File

@ -43,6 +43,7 @@ export const MasterRespository = {
"Work Category": ( id ) => api.delete( `api/master/work-category/${ id }` ),
"Contact Category": ( id ) => api.delete( `/api/master/contact-category/${id}` ),
"Contact Tag" :(id)=>api.delete(`/api/master/contact-tag/${id}`),
"Expense Type":(id,IsActive)=>api.delete(`/api/Master/expenses-type/delete/${id}`,IsActive=false),
getWorkCategory:() => api.get(`/api/master/work-categories`),
createWorkCategory: (data) => api.post(`/api/master/work-category`,data),