Skip to content

Commit c0b009e

Browse files
committed
fix: code cleanup apply.
1 parent bd21333 commit c0b009e

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

ExpressionBuilder/Interfaces/IFilterStatementConnection.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
/// </summary>
66
public interface IFilterStatementConnection
77
{
8-
/// <summary>
9-
/// Defines that the last filter statement will connect to the next one using the 'AND' logical operator.
10-
/// </summary>
11-
IFilter And { get; }
12-
13-
/// <summary>
14-
/// Defines that the last filter statement will connect to the next one using the 'OR' logical operator.
15-
/// </summary>
16-
IFilter Or { get; }
8+
/// <summary>
9+
/// Defines that the last filter statement will connect to the next one using the 'AND' logical operator.
10+
/// </summary>
11+
IFilter And { get; }
12+
13+
/// <summary>
14+
/// Defines that the last filter statement will connect to the next one using the 'OR' logical operator.
15+
/// </summary>
16+
IFilter Or { get; }
1717
}

ExpressionBuilder/Interfaces/IOperation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using System.ComponentModel.DataAnnotations;
1+
using ExpressionBuilder.Common;
2+
using System.ComponentModel.DataAnnotations;
23
using System.Linq.Expressions;
3-
using ExpressionBuilder.Common;
44

55
namespace ExpressionBuilder.Interfaces;
66

ExpressionBuilder/Interfaces/IPropertyCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ public interface IPropertyCollection : ICollection
1313
/// Type from which the properties are loaded.
1414
/// </summary>
1515
Type Type { get; }
16-
16+
1717
/// <summary>
1818
/// ResourceManager which the properties descriptions should be gotten from.
1919
/// </summary>
2020
ResourceManager ResourceManager { get; }
21-
21+
2222
/// <summary>
2323
/// Retrieves a property based on its Id.
2424
/// </summary>

0 commit comments

Comments
 (0)