Spaces:
Running
Running
| using FlowAPI.Domain.Entities; | |
| namespace FlowAPI.Application.Interfaces | |
| { | |
| public interface IUserRepository : IGenericRepository<User> | |
| { | |
| Task<User?> GetByEmailAsync(string email); | |
| } | |
| } | |
| using FlowAPI.Domain.Entities; | |
| namespace FlowAPI.Application.Interfaces | |
| { | |
| public interface IUserRepository : IGenericRepository<User> | |
| { | |
| Task<User?> GetByEmailAsync(string email); | |
| } | |
| } | |