internal int Insert()
 {
     try
     {
         using (CategoriesDL _categoriesdlDL = new CategoriesDL())
         {
             return(_categoriesdlDL.Insert(this));
         }
     }
     catch (Exception)
     {
         throw;
     }
 }