Files
2024-07-05 21:36:15 +03:30

27 lines
822 B
C#

using CompanyManagment.App.Contracts.Workshop;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.Insurance;
public class InsuranceViewModel
{
public long Id { get; set; }
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 string WorkShopCode { get; set; } //کد کارگاه
public string RadifPeyman { get; set; } // ردیف پیمان
public WorkshopViewModel Workshop { get; set; }
}