реализация Search Model

This commit is contained in:
Альфия Тукаева 2023-04-03 17:21:19 +03:00
parent 4849c5aca6
commit efce665f58
6 changed files with 72 additions and 1 deletions

View File

@ -11,6 +11,6 @@ namespace SchoolContracts.BindingModel
public int Id { get; set; }
public string LessonName { get; set; } = string.Empty;
public decimal LessonCost { get; set; }
public int? EmployeeId { get; set; }
public int EmployeeId { get; set; }
}
}

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.SearchModel
{
public class CircleSearchModel
{
public int? Id { get; set; }
}
}

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.SearchModel
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientEmail { get; set; }
public string? ClientPassword { get; set; }
public string? ClientPhone { get; set; }
public string? ClientName { get; set; }
}
}

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.SearchModel
{
public class EmployeeSearchModel
{
public int? Id { get; set; }
}
}

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.SearchModel
{
public class LessonSearchModel
{
public int? Id { get; set; }
public string? LessonName { get; set; }
}
}

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.SearchModel
{
public class PaymentSearchModel
{
public int? Id { get; set; }
}
}