mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-02 03:22:57 +00:00
9 lines
236 B
C#
9 lines
236 B
C#
using System.Threading.Tasks;
|
|
using CleanArchitecture.Domain.Entities;
|
|
|
|
namespace CleanArchitecture.Domain.Interfaces.Repositories;
|
|
|
|
public interface IUserRepository : IRepository<User>
|
|
{
|
|
Task<User?> GetByEmailAsync(string email);
|
|
} |