36 lines
1.1 KiB
C#
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; }
|
|
}
|
|
|