Созданы Search модели, изменены модификаторы доступа классов BindingModels
This commit is contained in:
parent
73ab10abd1
commit
c5174ca09e
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace LawFirmContracts.BindingModels
|
namespace LawFirmContracts.BindingModels
|
||||||
{
|
{
|
||||||
internal class BlankBindingModel : IBlankModel
|
public class BlankBindingModel : IBlankModel
|
||||||
{
|
{
|
||||||
public string BlankName { get; set; } = string.Empty;
|
public string BlankName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace LawFirmContracts.BindingModels
|
namespace LawFirmContracts.BindingModels
|
||||||
{
|
{
|
||||||
internal class DocumentBindingModel : IDocumentModel
|
public class DocumentBindingModel : IDocumentModel
|
||||||
{
|
{
|
||||||
public string DocumentName {get; set;} = string.Empty;
|
public string DocumentName {get; set;} = string.Empty;
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace LawFirmContracts.BindingModels
|
namespace LawFirmContracts.BindingModels
|
||||||
{
|
{
|
||||||
internal class OrderBindingModel : IOrderModel
|
public class OrderBindingModel : IOrderModel
|
||||||
{
|
{
|
||||||
public int DocumentId { get; set; }
|
public int DocumentId { get; set; }
|
||||||
|
|
||||||
|
14
LawFirm/LawFirmContracts/SearchModels/BlankSearchModel.cs
Normal file
14
LawFirm/LawFirmContracts/SearchModels/BlankSearchModel.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace LawFirmContracts.SearchModels
|
||||||
|
{
|
||||||
|
public class BlankSearchModel
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
public string? BlankName { get; set; }
|
||||||
|
}
|
||||||
|
}
|
14
LawFirm/LawFirmContracts/SearchModels/DocumentSearchModel.cs
Normal file
14
LawFirm/LawFirmContracts/SearchModels/DocumentSearchModel.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace LawFirmContracts.SearchModels
|
||||||
|
{
|
||||||
|
public class DocumentSearchModel
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
public string? DocumentName { get; set; }
|
||||||
|
}
|
||||||
|
}
|
14
LawFirm/LawFirmContracts/SearchModels/OrderSearchModel.cs
Normal file
14
LawFirm/LawFirmContracts/SearchModels/OrderSearchModel.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace LawFirmContracts.SearchModels
|
||||||
|
{
|
||||||
|
public class OrderSearchModel
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user