using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using CompanyManagment.App.Contracts.CrossJob; using CompanyManagment.App.Contracts.CrossJobItems; using CompanyManagment.App.Contracts.Employee; using CompanyManagment.App.Contracts.Job; using Microsoft.AspNetCore.Mvc.Rendering; namespace CompanyManagment.App.Contracts.Insurance; public class CreateInsurance { public int Year { get; set; } public int Month { get; set; } public string EmployerStr { get; set; } //نام کارفرما public string WorkShopStr { get; set; } //نام کارگاه public long WorkShopId { get; set; } //Id کارگاه public string Address { get; set; } public string ListNumber { get; set; } //public List crossJobsList { get; set; } //public List crossJobItemsList { get; set; } //public List crossJobsListParent { get; set; } //public List editcrossJobsList { get; set; } //public List economicCodeList { get; set; } public SelectList EmployerList { get; set; } public long[] wsItems { get; set; } public string WorkShopCode { get; set; } //کد کارگاه public string RadifPeyman { get; set; } // ردیف پیمان }