Skip to content

Commit

Permalink
Cleanup Code with Dotnet Format
Browse files Browse the repository at this point in the history
  • Loading branch information
stphnwlsh committed Feb 19, 2022
1 parent 93dcf63 commit 163f054
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Application/Common/Behaviours/ValidationBehaviour.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace CleanMinimalApi.Application.Common.Behaviours;
namespace CleanMinimalApi.Application.Common.Behaviours;

using System.Collections.Generic;
using System.Linq;
Expand Down
3 changes: 1 addition & 2 deletions src/Infrastructure/DependencyInjection.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using SimpleDateTimeProvider;

namespace CleanMinimalApi.Infrastructure;

using System.Diagnostics.CodeAnalysis;
using CleanMinimalApi.Application.Common.Interfaces;
using CleanMinimalApi.Infrastructure.Persistance.InMemory.MovieReviews;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using SimpleDateTimeProvider;

[ExcludeFromCodeCoverage]
public static class DependencyInjection
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using SimpleDateTimeProvider;

namespace CleanMinimalApi.Infrastructure.Persistance.InMemory.MovieReviews;

using CleanMinimalApi.Application.Common.Enums;
using CleanMinimalApi.Application.Common.Exceptions;
using CleanMinimalApi.Application.Common.Interfaces;
using CleanMinimalApi.Application.Entities;
using Microsoft.EntityFrameworkCore;
using SimpleDateTimeProvider;

internal class MovieReviewsRepository : AuthorsRepository, MoviesRepository, ReviewsRepository
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
using SimpleDateTimeProvider;

namespace CleanMinimalApi.Infrastructure.Tests.Integration.Persistance.InMemory.MovieReviews;

using System;
using CleanMinimalApi.Infrastructure.Persistance.InMemory.MovieReviews;
using Microsoft.EntityFrameworkCore;
using SimpleDateTimeProvider;
using Xunit;

[CollectionDefinition("MovieReviews")]
Expand Down

0 comments on commit 163f054

Please sign in to comment.