Skip to content

Commit

Permalink
Remove redundant empty body
Browse files Browse the repository at this point in the history
  • Loading branch information
panosru committed Jan 3, 2024
1 parent 4528246 commit f238b1a
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 25 deletions.
3 changes: 1 addition & 2 deletions Domains/Account/Application/Identity/AccountRole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

namespace CleanDDDArchitecture.Domains.Account.Application.Identity;

public sealed class AccountRole : ApplicationRole
{ }
public sealed class AccountRole : ApplicationRole;
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

namespace CleanDDDArchitecture.Domains.Account.Application.Persistence;

public interface IAccountDbContextRead : IDbContextRead
{ }
public interface IAccountDbContextRead : IDbContextRead;
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

namespace CleanDDDArchitecture.Domains.Account.Application.Persistence;

public interface IAccountDbContextWrite : IDbContextWrite
{ }
public interface IAccountDbContextWrite : IDbContextWrite;
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@

namespace CleanDDDArchitecture.Domains.Account.Application.Repositories;

public interface IAccountRepositoryRead : IRepositoryRead<AccountAggregate, AccountAggregateId>
{ }
public interface IAccountRepositoryRead : IRepositoryRead<AccountAggregate, AccountAggregateId>;
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@

namespace CleanDDDArchitecture.Domains.Account.Application.Repositories;

public interface IAccountRepositoryWrite : IRepositoryWrite<AccountAggregate, AccountAggregateId>
{ }
public interface IAccountRepositoryWrite : IRepositoryWrite<AccountAggregate, AccountAggregateId>;
3 changes: 1 addition & 2 deletions Domains/Account/Core/IAccountDomainConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

namespace CleanDDDArchitecture.Domains.Account.Core;

public interface IAccountDomainConfiguration : IDomainConfigurationContainer
{ }
public interface IAccountDomainConfiguration : IDomainConfigurationContainer;
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@

namespace CleanDDDArchitecture.Domains.Todo.SubDomains.TodoItem.Core.Repositories;

public interface ITodoItemRepositoryRead : IRepositoryRead<TodoItemEntity, int>
{ }
public interface ITodoItemRepositoryRead : IRepositoryRead<TodoItemEntity, int>;
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@

namespace CleanDDDArchitecture.Domains.Todo.SubDomains.TodoItem.Core.Repositories;

public interface ITodoItemRepositoryWrite : IRepositoryWrite<TodoItemEntity, int>
{ }
public interface ITodoItemRepositoryWrite : IRepositoryWrite<TodoItemEntity, int>;
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@

namespace CleanDDDArchitecture.Domains.Todo.SubDomains.TodoList.Core.Repositories;

public interface ITodoListRepositoryRead : IRepositoryRead<TodoListEntity, int>
{ }
public interface ITodoListRepositoryRead : IRepositoryRead<TodoListEntity, int>;
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@

namespace CleanDDDArchitecture.Domains.Todo.SubDomains.TodoList.Core.Repositories;

public interface ITodoListRepositoryWrite : IRepositoryWrite<TodoListEntity, int>
{ }
public interface ITodoListRepositoryWrite : IRepositoryWrite<TodoListEntity, int>;
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@

namespace CleanDDDArchitecture.Domains.Weather.Application.UseCases.SyncWeatherService;

internal sealed class SyncWeatherServiceJobOptions : IJobOptions
{ }
internal sealed class SyncWeatherServiceJobOptions : IJobOptions;

[Queue(JobQueue.Main)]
internal class SyncWeatherServiceJob : IJob<SyncWeatherServiceJobOptions>
Expand Down
3 changes: 1 addition & 2 deletions Domains/Weather/Hosts/RestApi/Application/ApiController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ namespace CleanDDDArchitecture.Domains.Weather.Hosts.RestApi.Application;
/// <summary>
/// Weather endpoints
/// </summary>
public abstract class ApiController : CleanDDDArchitecture.Hosts.RestApi.Core.Controllers.ApiController
{ }
public abstract class ApiController : CleanDDDArchitecture.Hosts.RestApi.Core.Controllers.ApiController;

/// <inheritdoc />
/// <summary>
Expand Down

0 comments on commit f238b1a

Please sign in to comment.