public List <DateTime> GetDates()
        {
            ISHES shes = new DAO.Implementacije.SHES();

            return(shes.GetDates());
        }
        public void SaveTotalExpenditure(DateTime date, int total)
        {
            ISHES shes = new DAO.Implementacije.SHES();

            shes.Save(date.ToString("dd/MM/yyyy"), total);
        }