Exemple #1
0
 public bool Add(TEntity obj)
 {
     if (obj != null)
     {
         return(_dataReader.Add(obj));
     }
     else
     {
         throw new ArgumentNullException("Object add");
     }
 }