22 lines
622 B
C#
22 lines
622 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeComputeOptions
|
|
{
|
|
public class CreateEmployeeComputeOptions
|
|
{
|
|
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; }
|
|
}
|
|
}
|