Esempio n. 1
0
 public bool Update(Users obj)
 {
     try
     {
         return(_dapper.Update <Users>(obj));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 2
0
 public bool Update(TEntity entity)
 {
     return(dapper.Update <TEntity>(entity));
 }