18 lines
523 B
C#
18 lines
523 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.InsuranceJob;
|
|
|
|
public class InsuranceJobSearchModel
|
|
{
|
|
public string InsuranceJobTitle { get; set; }
|
|
public long YearlySalaryId { get; set; }
|
|
public string EconomicCode { get; set; }
|
|
public string Year { get; set; }
|
|
public string Month { get; set; }
|
|
//public double SalaryFrom { get; set; }
|
|
//public double SalaryTo{ get; set; }
|
|
} |