36 lines
1021 B
C#
36 lines
1021 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.PaymentToEmployee;
|
|
|
|
public class PaymentToEmployeeItemViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long PaymentToEmployeeId { get; set; }
|
|
|
|
public string PaymentFa { get; set; }
|
|
public string PayDateFa { get; set; }
|
|
public string PayHours { get; set; }
|
|
public DateTime PayDate { get; set; }
|
|
#region PaymentMetods
|
|
|
|
//PayToBankAccount - PayByCash - PayByBankCheck
|
|
public string PaymentMetod { get; set; }
|
|
|
|
//PayToBankAccount
|
|
public string SourceBankName { get; set; }
|
|
public string SourceBankAccountNumber { get; set; }
|
|
public string DestinationBankName { get; set; }
|
|
public string DestinationBankAccountNumber { get; set; }
|
|
|
|
//PayByBankCheck
|
|
public string BankCheckNumber { get; set; }
|
|
|
|
//PayByCash
|
|
public string CashDescription { get; set; }
|
|
|
|
#endregion
|
|
|
|
public string PaymentTitle { get; set; }
|
|
} |