From 4373f921cd50974aea456db39a5b7ecf83f44941 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Thu, 10 Jun 2010 21:02:08 +0000 Subject: [PATCH] Follow-up to previous commit --- Core/DB/conditions/EmptyCondition.cs | 9 +++++++++ Core/DB/conditions/NotEmptyCondition.cs | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 Core/DB/conditions/EmptyCondition.cs create mode 100644 Core/DB/conditions/NotEmptyCondition.cs diff --git a/Core/DB/conditions/EmptyCondition.cs b/Core/DB/conditions/EmptyCondition.cs new file mode 100644 index 0000000..dedbae2 --- /dev/null +++ b/Core/DB/conditions/EmptyCondition.cs @@ -0,0 +1,9 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FLocal.Core.DB.conditions { + public class EmptyCondition : AbstractCondition { + } +} diff --git a/Core/DB/conditions/NotEmptyCondition.cs b/Core/DB/conditions/NotEmptyCondition.cs new file mode 100644 index 0000000..1f0e6b1 --- /dev/null +++ b/Core/DB/conditions/NotEmptyCondition.cs @@ -0,0 +1,9 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FLocal.Core.DB.conditions { + public abstract class NotEmptyCondition : AbstractCondition { + } +}