AP Goverment compat

Instructions

Replace methods in ap-gov/server/functions.lua with below provided ones.

ap-gov/server/functions.lua
GetAccountData = function(business)
    return exports.fd_banking:GetAccount(business)
end

AddAccountMoney = function(business, amount)
    return exports.fd_banking:AddMoney(business, amount)
end

RemoveAccountMoney = function(business, amount)
    return exports.fd_banking:RemoveMoney(business, amount)
end

BankingTransaction = function(identifier, amount, tax)
end