コード例 #1
0
 protected long Add(List <string> values)
 {
     if (string.IsNullOrEmpty(tableName) || DataMgr == null)
     {
         throw new Exception();
     }
     return(DataMgr.Add(tableName, values));
 }