Style fixes

This commit is contained in:
Biarity 2019-11-17 08:51:13 +10:00
parent a582c6be06
commit 6652ada702
15 changed files with 26 additions and 30 deletions

View File

@ -1,5 +1,5 @@
using Sieve.Models; using System;
using System; using Sieve.Models;
namespace Sieve.Attributes namespace Sieve.Attributes
{ {

View File

@ -1,7 +1,5 @@
using System; using System;
using System.Collections.Generic;
using System.Reflection; using System.Reflection;
using System.Text;
namespace Sieve.Extensions namespace Sieve.Extensions
{ {

View File

@ -1,5 +1,4 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
namespace Sieve.Models namespace Sieve.Models
{ {

View File

@ -1,5 +1,4 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.Linq; using System.Linq;
using System.Runtime.Serialization; using System.Runtime.Serialization;

View File

@ -1,9 +1,9 @@
using Sieve.Models; using System;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Linq.Expressions; using System.Linq.Expressions;
using System.Reflection; using System.Reflection;
using Sieve.Models;
namespace Sieve.Services namespace Sieve.Services
{ {