예제 #1
0
        public bool AddCategorie(Categories categorie)
        {
            try
            {
                if (Categorie == null)
                {
                    Categorie = new List <Categories>();
                }

                Categorie.Add(categorie);
                BindCategorie();
                return(true);
            }
            catch (Exception)
            {
                return(false);
            }
        }