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

28 lines
993 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.PaymentToEmployee;
public class PaymentToEmployeeViewModel
{
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; }
}