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; 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 long JobId { get; set; } public List Jobs { get; set; } public List InsuranceJobItems { get; set; } }