This commit is contained in:
2010-06-02 22:14:11 +02:00
parent 045992b69e
commit 33a4f206a8
9 changed files with 234 additions and 57 deletions

View File

@@ -63,3 +63,8 @@ User* KissCount::GetUser()
{
return _user;
}
double KissCount::GetAccountAmount(wxString id, int month, int year)
{
return _db->GetAccountAmount(id, month, year);
}

View File

@@ -20,7 +20,8 @@ class KissCount
void LoadUser(wxString user);
void LoadYear(int year, bool force=false);
User* GetUser();
double GetAccountAmount(wxString id, int month, int year);
private:
wxUI* _wxUI;
Database* _db;