Files
2025-01-04 21:45:20 +03:30

18 lines
516 B
C#

using System;
using System.Globalization;
namespace CompanyManagment.App.Contracts.CustomizeCheckout;
public class CreateCustomizeCheckoutTemp
{
public int YearFa { get; set; }
public int MonthFa { get; set; }
public int DayFa { get; set; }
public DateTime ContractStart => new(YearFa, MonthFa, 1, new PersianCalendar());
public DateTime ContractEnd => new(YearFa, MonthFa, DayFa, new PersianCalendar());
public long EmployeeId { get; set; }
public long WorkshopId { get; set; }
}