34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CompanyManagment.App.Contracts.InsuranceJobItem;
|
|
using CompanyManagment.App.Contracts.Job;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
|
|
namespace CompanyManagment.App.Contracts.InsuranceJob;
|
|
|
|
public class CreateInsuranceJob
|
|
{
|
|
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 long JobId { get; set; }
|
|
|
|
public string StartDateFa { get; set; }
|
|
public string EndDateFa { get; set; }
|
|
public List<JobViewModel> Jobs { get; set; }
|
|
public List<InsuranceJobItemViewModel> InsuranceJobItems { get; set; }
|
|
|
|
public List<string> WorkshopList { get; set; }
|
|
public bool HasAnyWorkshop { get; set; }
|
|
|
|
public long InsuranceJobItemId { get; set; }
|
|
|
|
public SelectList InsuranceJobItemViewModels { get; set; }
|
|
|
|
|
|
} |