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; } }