чиним бд

This commit is contained in:
Allllen4a 2024-05-01 10:24:21 +04:00
parent 9c6b974a27
commit af6d3f39ce
2 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ namespace BeautySalonRestApi.Controllers
{
try
{
return evaluation.ReadList(new EvaluationSearchModel { ClientId = userId, PageNumber = page, PageSize = 10 });
return evaluation.ReadList(new EvaluationSearchModel { ClientId = userId});
}
catch (Exception ex)
{

View File

@ -4,7 +4,7 @@
{
public int? Id { get; set; }
public int? ClientId { get; set; }
public int? PageNumber { get; set; }
public int? PageSize { get; set; }
public int? ProcedureId { get; set; }
}
}