2025-04-27 02:19:29 -03:00
|
|
|
|
namespace Domain.Generics
|
|
|
|
|
|
{
|
|
|
|
|
|
public class QuoteSearchParams : PagedRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
public int? CustomerId { get; set; }
|
2025-05-13 12:08:38 -03:00
|
|
|
|
public string? CustomerText { get; set; } // <-- nuevo
|
2025-04-27 02:19:29 -03:00
|
|
|
|
public string? QuoteNumber { get; set; }
|
|
|
|
|
|
public int? ProfessionalId { get; set; }
|
2025-05-13 12:08:38 -03:00
|
|
|
|
public string? ProfessionalText { get; set; } // <-- nuevo
|
2025-04-27 02:19:29 -03:00
|
|
|
|
public int? InstitutionId { get; set; }
|
2025-05-13 12:08:38 -03:00
|
|
|
|
public string? InstitutionText { get; set; } // <-- nuevo
|
2025-04-27 02:19:29 -03:00
|
|
|
|
public int? PatientId { get; set; }
|
2025-05-13 12:08:38 -03:00
|
|
|
|
public string? PatientText { get; set; } // <-- nuevo
|
2025-04-27 02:19:29 -03:00
|
|
|
|
public DateTime? IssueDateFrom { get; set; }
|
|
|
|
|
|
public DateTime? IssueDateTo { get; set; }
|
|
|
|
|
|
public string? Status { get; set; }
|
|
|
|
|
|
}
|
2025-05-13 12:08:38 -03:00
|
|
|
|
|
|
|
|
|
|
//public class QuoteSearchParams : PagedRequest
|
|
|
|
|
|
//{
|
|
|
|
|
|
// public int? CustomerId { get; set; }
|
|
|
|
|
|
// public string? QuoteNumber { get; set; }
|
|
|
|
|
|
// public int? ProfessionalId { get; set; }
|
|
|
|
|
|
// public int? InstitutionId { get; set; }
|
|
|
|
|
|
// public int? PatientId { get; set; }
|
|
|
|
|
|
// public DateTime? IssueDateFrom { get; set; }
|
|
|
|
|
|
// public DateTime? IssueDateTo { get; set; }
|
|
|
|
|
|
// public string? Status { get; set; }
|
|
|
|
|
|
//}
|
2025-04-27 02:19:29 -03:00
|
|
|
|
}
|