コード例 #1
0
        public static Return Insert(GlossaryTerm obj)
        {
            obj.DateCreated      = DateTime.Now;
            obj.DateLastModified = DateTime.Now;

            return(Insert(MapperKey, obj));
        }
コード例 #2
0
 public static Return DeletePermanently(GlossaryTerm obj)
 {
     return(Delete(MapperKey, obj));
 }
コード例 #3
0
 public static Return Update(GlossaryTerm obj)
 {
     obj.DateLastModified = DateTime.Now;
     return(Update(MapperKey, obj));
 }