Skip to content

Commit

Permalink
Merge pull request #13 from Valeriy1991/dev
Browse files Browse the repository at this point in the history
Remove the obsolete method "IsValid" in Checkers
  • Loading branch information
abakumov-v authored Jun 13, 2018
2 parents 059d1fb + 7cc4b10 commit f1e3e99
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions CQRSlight.Db/Abstract/IDbChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ namespace CQRSlight.Db.Abstract
{
public interface IDbChecker<in TEntity>
{
[Obsolete("You must use the Check method instead of this. This method will be removed in 1.0.2")]
IOutcome IsValid(IDbExecutor dbExecutor, TEntity entity);

IOutcome Check(IDbExecutor dbExecutor, TEntity entity);
}
}
3 changes: 0 additions & 3 deletions CQRSlight/Abstract/IChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ namespace CQRSlight.Abstract
{
public interface IChecker<in TEntity>
{
[Obsolete("You must use the Check method instead of this. This method will be removed in 1.0.2")]
IOutcome IsValid(TEntity entity);

IOutcome Check(TEntity entity);
}
}

0 comments on commit f1e3e99

Please sign in to comment.