Files
Backend-Api/CompanyManagment.App.Contracts/PaymentToEmployee/PaymentToEmployeePrintViewModel.cs
2024-07-05 21:36:15 +03:30

36 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.PaymentToEmployee;
public class PaymentToEmployeePrintViewModel
{
public long Id { get; set; }
public long EmployeeId { get; set; }
public long WorkshopId { get; set; }
public string Month { get; set; }
public string Year { get; set; }
public int MonthInt { get; set; }
public int YearInt { get; set; }
public List<PaymentToEmployeeItemViewModel> PaymentToEmployeeItemList { get; set; }
public string PaymentToEmployeeTotalPayment { get; set; }
public double? PaymentToEmployeeTotalPaymentDouble { get; set; }
// اطلاعات مربوط به تصفیه حساب
public long CheckoutId { get; set; }
public string CheckoutTotalPayment { get; set; }
public double? CheckoutTotalPaymentDouble { get; set; }
// محاسبات
public string ComputeCheckoutTotalPayment { get; set; }
public string ComputePaymentToEmployeeTotalPayment { get; set; }
public List<PaymentToEmployeePrintViewModel> PaymentToEmployeePrintList { get; set; }
}