%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
import axios from "../axios"; class BudgetService { list(params) { return axios.get("budget/lists", { params }); } all(params) { return axios.get("budget/lists/ALL", { params }); } save(data) { return axios.post("budget/save", data); } delete(id) { return axios.post("budget/delete", { id }); } mediums(params) { return axios.get("budget/mediums", { params }); } allMediums(params) { return axios.get("budget/mediums/ALL", { params }); } saveMedium(data) { return axios.post("budget/saveMedium", data); } deleteMedium(id) { return axios.post("budget/deleteMedium", { id }); } channels(params) { return axios.get("budget/channels", { params }); } allChannels(params) { return axios.get("budget/channels/ALL", { params }); } saveChannel(data) { return axios.post("budget/saveChannel", data); } deleteChannel(id) { return axios.post("budget/deleteChannel", { id }); } users(params) { return axios.get("budget/users", { params }); } allUsers(params) { return axios.get("budget/users/ALL", { params }); } assignChannels(data) { return axios.post("budget/assignChannels", data); } } export default new BudgetService();