Example #1
0
 public async Task <bool> Delete(string ids)
 {
     return(await DapperExtensions.DeleteByIds <T>(_unitOfWork, ids) > 0 ? true : false);
 }