public static Return Insert(GlossaryTerm obj)
        {
            obj.DateCreated      = DateTime.Now;
            obj.DateLastModified = DateTime.Now;

            return(Insert(MapperKey, obj));
        }
 public static Return DeletePermanently(GlossaryTerm obj)
 {
     return(Delete(MapperKey, obj));
 }
 public static Return Update(GlossaryTerm obj)
 {
     obj.DateLastModified = DateTime.Now;
     return(Update(MapperKey, obj));
 }