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;
 }
Beispiel #3
0
        public bool renameSubCategorie(SubCategorie sc, string naam)
        {
            if (!SubCats.Contains(sc) && sc.Deleted == false)
            {
                return(false);
            }

            sc.Rename(naam);
            return(true);
        }
Beispiel #4
0
 public bool deleteSubCategorie(SubCategorie sc)
 {
     if (!SubCats.Contains(sc))
     {
         return(false);
     }
     sc.Deactivate();
     //SubCats.Remove(sc);
     return(true);
 }
Beispiel #5
0
        public bool addSubCategorie(SubCategorie sc)
        {
            if (SubCats.Contains(sc))
            {
                return(false);
            }

            SubCats.Add(sc);
            return(true);
        }
Beispiel #6
0
        public bool renameSubCategorie(string oud, string nieuw)
        {
            SubCategorie sc = SubCats.Find(t => t.Naam == oud);

            if (sc == null || sc.Deleted == true)
            {
                return(false);
            }

            sc.Rename(nieuw);
            return(true);
        }
Beispiel #7
0
        public bool deleteSubCategorie(string naam)
        {
            SubCategorie sc = SubCats.Find(t => t.Naam == naam);

            if (sc == null)
            {
                return(false);
            }
            sc.Deactivate();
            //SubCats.Remove(sc);
            return(true);
        }
Beispiel #8
0
        public bool addSubCategorie(string naam)
        {
            if (SubCats.Find(t => t.Naam == naam) != null)
            {
                return(false);
            }
            var          index = ID + SubCats.Count + 1;
            SubCategorie sc    = new SubCategorie(index, naam);

            SubCats.Add(sc);
            return(true);
        }
        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;
        }