/// <summary> Performs the insert action of a new Entity to the persistent storage.</summary> /// <returns>true if succeeded, false otherwise</returns> protected override bool InsertEntity() { ProductCategoryDAO dao = (ProductCategoryDAO)CreateDAOInstance(); return(dao.AddNew(base.Fields, base.Transaction)); }