47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
using _0_Framework.Application;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeComputeOptions;
|
|
|
|
public class EmployeeComputeOptionsViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
|
|
//نحوه محاسبه مزد مرخصی
|
|
public string ComputeOptions { get; set; }
|
|
//نحوه محاسبه عیدی
|
|
public string BonusesOptions { get; set; }
|
|
//نحوه محاسبه سنوات
|
|
public string YearsOptions { get; set; }
|
|
/// <summary>
|
|
/// ایجاد قرارداد
|
|
/// </summary>
|
|
public bool CreateContract { get; set; }
|
|
/// <summary>
|
|
/// امضای قرارداد
|
|
/// </summary>
|
|
public bool SignContract { get; set; }
|
|
/// <summary>
|
|
/// ایجاد تصفیه
|
|
/// </summary>
|
|
public bool CreateCheckout { get; set; }
|
|
/// <summary>
|
|
/// امضای تصفیه
|
|
/// </summary>
|
|
public bool SignCheckout { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// مدت قرارداد
|
|
/// </summary>
|
|
public string ContractTerm { get; set; }
|
|
|
|
/// <summary>
|
|
/// اگر قرارداد بیش از یک ماه باشد و گزینه انتخاب شده منتهی به پایان سال باشد
|
|
/// این آیتم
|
|
/// True
|
|
/// است
|
|
/// </summary>
|
|
public IsActive CutContractEndOfYear { get; set; }
|
|
} |