Files
silver-octo-spoon/wolverine/a-frame-architecture/FinancialApi.Application/Interfaces/IAccountQuery.cs
T

8 lines
161 B
C#

using FinancialApi.Domain.Entities;
namespace FinancialApi.Application.Interfaces;
public interface IAccountQuery
{
Task<Account?> FindByIdAsync(int id);
}