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 Jobs { get; set; } public List InsuranceJobItems { get; set; } public List WorkshopList { get; set; } public bool HasAnyWorkshop { get; set; } public long InsuranceJobItemId { get; set; } public SelectList InsuranceJobItemViewModels { get; set; } }