Spaces:
Sleeping
Sleeping
| using ECommerce.Model.Entities; | |
| namespace ECommerce.Model.Repositories; | |
| public interface ICustomerRepository : IRepository<Customer> | |
| { | |
| Task<Customer?> GetByUserIdAsync(string userId); | |
| } | |
| using ECommerce.Model.Entities; | |
| namespace ECommerce.Model.Repositories; | |
| public interface ICustomerRepository : IRepository<Customer> | |
| { | |
| Task<Customer?> GetByUserIdAsync(string userId); | |
| } | |