CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptContracts/ViewModels/ReportCashierAccountsViewModel.cs

27 lines
667 B
C#
Raw Normal View History

2023-05-18 12:19:37 +04:00
using BankYouBankruptDataModels.Enums;
using System;
2023-05-17 20:46:26 +04:00
using System.Collections.Generic;
2023-05-18 12:19:37 +04:00
using System.ComponentModel;
2023-05-17 20:46:26 +04:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.ViewModels
{
public class ReportCashierAccountsViewModel
2023-05-18 12:19:37 +04:00
{
2023-05-17 20:46:26 +04:00
2023-05-18 12:19:37 +04:00
public int Sum { get; set; }
2023-05-18 17:22:13 +04:00
public string AccountSenderNumber { get; set; } = "---";
2023-05-18 12:19:37 +04:00
2023-05-18 17:22:13 +04:00
public string AccountPayeeNumber { get; set; } = "---";
2023-05-18 12:19:37 +04:00
public DateTime DateOperation { get; set; } = DateTime.Now;
public string CashierSurname { get; set; } = string.Empty;
public TypeOperationEnum typeOperation { get; set; }
2023-05-17 20:46:26 +04:00
}
}