8 lines
149 B
C#
8 lines
149 B
C#
using FinancialApi.Domain;
|
|
|
|
namespace FinancialApi.Application.Queries;
|
|
|
|
public interface IAccountQuery
|
|
{
|
|
Task<Account?> FindByIdAsync(int id);
|
|
} |