public Post(HoofdCategorie hoofdcat, SubCategorie subcat, double debet, double credit)
 {
     HoofdCat = hoofdcat;
     SubCat   = subcat;
     Debet    = debet;
     Credit   = credit;
 }
 public BudgetPost(Maand maand, HoofdCategorie hoofdcat, SubCategorie subcat, double debet, double credit)
 {
     Mnd      = maand;
     HoofdCat = hoofdcat;
     SubCat   = subcat;
     Debet    = debet;
     Credit   = credit;
 }
        public TransactiePost(int id, DateTime datum, HoofdCategorie hoofdcat, SubCategorie subcat, string comment, double debet, double credit)
        {
            string ds = datum.ToShortDateString();

            ID          = id;
            Datum       = datum;
            HoofdCat    = hoofdcat;
            SubCat      = subcat;
            Comment     = comment;
            Debet       = debet;
            Credit      = credit;
            DatumString = ds;
        }