34 lines
1.3 KiB
C#
34 lines
1.3 KiB
C#
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<CrossJobViewModel> crossJobsList { get; set; }
|
|
//public List<CrossJobItemsViewModel> crossJobItemsList { get; set; }
|
|
//public List<CrossJobViewModel> crossJobsListParent { get; set; }
|
|
//public List<EditCrossJob> editcrossJobsList { get; set; }
|
|
//public List<string> economicCodeList { get; set; }
|
|
public SelectList EmployerList { get; set; }
|
|
public long[] wsItems { get; set; }
|
|
|
|
public string WorkShopCode { get; set; } //کد کارگاه
|
|
public string RadifPeyman { get; set; } // ردیف پیمان
|
|
|
|
|
|
} |