Some refactor ideas

This commit is contained in:
soukoku
2014-04-05 16:48:28 -04:00
parent 4fa3e77fba
commit 67c6705224
49 changed files with 183 additions and 163 deletions

View File

@@ -16,7 +16,7 @@ namespace NTwain.Triplets
/// </summary>
/// <param name="session">The session.</param>
/// <exception cref="System.ArgumentNullException"></exception>
internal OpBase(ITwainSessionInternal session)
internal OpBase(ITwainStateInternal session)
{
if (session == null) { throw new ArgumentNullException("session"); }
Session = session;
@@ -28,6 +28,6 @@ namespace NTwain.Triplets
/// <value>
/// The session.
/// </value>
internal ITwainSessionInternal Session { get; private set; }
internal ITwainStateInternal Session { get; private set; }
}
}