Esempio n. 1
0
 public bool SetupCommand(IDataInteraction command)
 {
     command.ExecuteText(GetSql());
     command.AddParameterWithValue("@documentId", _documentId);
     command.AddParameterWithValue("@start", _start);
     command.AddParameterWithValue("@pageSize", _pageSize);
     return(true);
 }