17 lines
560 B
C#
17 lines
560 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
|
|
namespace CompanyManagment.App.Contracts.CustomizeCheckout;
|
|
|
|
public class CreateCustomizeCheckoutTempGroup
|
|
{
|
|
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 WorkshopId { get; set; }
|
|
public List<long> EmployeeIds { get; set; }
|
|
} |