29 lines
668 B
C#
29 lines
668 B
C#
namespace CompanyManagment.App.Contracts.CustomizeCheckout;
|
|
|
|
public class SearchCustomizeCheckout
|
|
{
|
|
|
|
public long WorkshopId { get; set; }
|
|
|
|
public int Month { get; set; }
|
|
public int Year { get; set; }
|
|
|
|
public string SearchStartFa { get; set; }
|
|
public string SearchEndFa { get; set; }
|
|
|
|
public long EmployeeId { get; set; }
|
|
|
|
public long BankId { get; set; }
|
|
|
|
public CustomizeCheckoutOrderByEnum OrderBy { get; set; } = CustomizeCheckoutOrderByEnum.ContractStartDesc;
|
|
public int PageIndex { get; set; }
|
|
}
|
|
|
|
public enum CustomizeCheckoutOrderByEnum
|
|
{
|
|
ContractStart,
|
|
ContractStartDesc,
|
|
ContractNoDesc,
|
|
ContractNo,
|
|
}
|