40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using CompanyManagment.App.Contracts.Workshop;
|
|
|
|
namespace CompanyManagment.App.Contracts.InsuranceWorkshopInfo;
|
|
|
|
public class CreateInsuranceWorkshopInfo
|
|
{ //آی دی کارگاه
|
|
public long WorkshopId { get; set; }
|
|
//نام کارگاه
|
|
public string WorkshopName { get; set; }
|
|
//کد کارگاهی بیمه
|
|
public string InsuranceCode { get; set; }
|
|
//ردیف پیمان
|
|
public string AgreementNumber { get; set; }
|
|
// نام کارفرما
|
|
public string EmployerName { get; set; }
|
|
//آدرس کارگاه
|
|
public string Address { get; set; }
|
|
public string TypeOfInsuranceSend { get; set; }
|
|
public string ListNumber { get; set; }
|
|
public string Population { get; set; }
|
|
public bool FixedSalary { get; set; }
|
|
public long? InsuranceJobId { get; set; }
|
|
//public bool ConfirmSentlist { get; set; }
|
|
|
|
/// <summary>
|
|
/// محاسبه اضافه کار فیش حقوقی در لیست بیمه
|
|
/// </summary>
|
|
public bool InsuranceCheckoutOvertime { get; set; }
|
|
/// <summary>
|
|
/// محاسبه حق اولاد در لیست بیمه
|
|
/// </summary>
|
|
public bool InsuranceCheckoutFamilyAllowance { get; set; }
|
|
|
|
} |