From 7cc4b10ab130ddea619a33865ac74b962fa55ffa Mon Sep 17 00:00:00 2001 From: Valeriy1991 <6594815+Valeriy1991@users.noreply.github.com> Date: Wed, 13 Jun 2018 17:50:50 +0300 Subject: [PATCH] Remove the obsolete method "IsValid" --- CQRSlight.Db/Abstract/IDbChecker.cs | 3 --- CQRSlight/Abstract/IChecker.cs | 3 --- 2 files changed, 6 deletions(-) diff --git a/CQRSlight.Db/Abstract/IDbChecker.cs b/CQRSlight.Db/Abstract/IDbChecker.cs index 4f9a020..2718b3a 100644 --- a/CQRSlight.Db/Abstract/IDbChecker.cs +++ b/CQRSlight.Db/Abstract/IDbChecker.cs @@ -6,9 +6,6 @@ namespace CQRSlight.Db.Abstract { public interface IDbChecker { - [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); } } \ No newline at end of file diff --git a/CQRSlight/Abstract/IChecker.cs b/CQRSlight/Abstract/IChecker.cs index 2f0e2dc..7395551 100644 --- a/CQRSlight/Abstract/IChecker.cs +++ b/CQRSlight/Abstract/IChecker.cs @@ -5,9 +5,6 @@ namespace CQRSlight.Abstract { public interface IChecker { - [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); } } \ No newline at end of file