using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.InsuranceList;
public class InsuranceListSearchModel
{
public string Year { get; set; }
public string Month { get; set; }
public string WorkShopCode { get; set; }
public string WorkShopName { get; set; }
public string TypeOfInsuranceSend { get; set; }
public bool? FixedSalary { get; set; }
public string EmployerName { get; set; }
public long EmployerId { get; set; }
public string Branch { get; set; }
public string City { get; set; }
public long WorkshopId { get; set; }
public string WorkshopFullName { get; set; }
public string Sorting { get; set; }
public int PageIndex { get; set; }
public bool SearchAll { get; set; }
public InsuranceListSearchStatus Status { get; set; }
}
public enum InsuranceListSearchStatus
{
///
/// انجام نشده
///
NotStarted = 0,
///
/// در حال انجام امور
///
InProgress = 1,
///
/// آماده ارسال لیست
///
ReadyToSendList = 2,
///
/// انجام بیمه
///
Done = 3
}