26 lines
950 B
C#
26 lines
950 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CompanyManagment.App.Contracts.PersonnleCode;
|
|
using CompanyManagment.App.Contracts.Workshop;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
namespace CompanyManagment.App.Contracts.LeftWorkInsurance;
|
|
|
|
public class LeftworkInsuranceDividedList
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public SelectList Workshops { get; set; }
|
|
public List<LeftWorkInsuranceGroup> LeftWorkInsuranceGroups { get; set; }
|
|
public List<PersonnelCodeViewModel> PersonnelCode { get; set; }
|
|
public bool IsDelete { get; set; }
|
|
public List<int> PermissionIds { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string WorkshopName { get; set; }
|
|
public bool AddBonusesPay { get; set; }
|
|
public bool AddLeavePay { get; set; }
|
|
public bool AddYearsPay { get; set; }
|
|
} |