public bool AddNew()
 {
     if (Name != null)
     {
         DATA.AddNewCategory(this);
         OnCategoryCreated();
         return(true);
     }
     return(false);
 }