This commit is contained in:
2012-10-04 11:18:29 +00:00
parent 314046cd77
commit 2e18286a17
166 changed files with 225 additions and 0 deletions

View File

@@ -249,6 +249,7 @@ namespace VEPROMS.CSLA.Library
cm.CommandType = CommandType.StoredProcedure;
cm.CommandText = "getFiguresByROFstID";
cm.Parameters.AddWithValue("@ROFstID", criteria.ROFstID);
cm.CommandTimeout = Database.DefaultTimeout;
using (SafeDataReader dr = new SafeDataReader(cm.ExecuteReader()))
{
while (dr.Read()) this.Add(new ROFstFigure(dr));