SurveyVista/Services/Interaces/IUserResponseRepository.cs
2024-06-01 18:38:06 +02:00

13 lines
196 B
C#

using Model;
namespace Services.Interaces
{
public interface IUserResponseRepository
{
Task<IEnumerable<Response>> GetResponsesByUserAsync(string userName);
}
}