22 lines
638 B
C#
22 lines
638 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.InsuranceList;
|
|
|
|
public class EmployeeForEditInsuranceListSearchModel
|
|
{
|
|
|
|
public long InsuranceId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string Year { get; set; }
|
|
public string Month { get; set; }
|
|
public string Population { get; set; }
|
|
public bool FixedSalary { get; set; }
|
|
public string TypeOfInsuranceSendWorkshop { get; set; }
|
|
public long? InsuranceJobId { get; set; }
|
|
public List<long> WorkshopIds { get; set; }
|
|
|
|
} |