Example #1
0
 public IEnumerable <T> ExecuteStoredProcedure <T>(string procName, params IDataParameter[] parms) where T : class
 {
     return(_dapper.ExecuteProc <T>(Connection, procName, _transaction, null, true, parms));
 }