CourseWork_Bank/Bank/BankContracts/SearchModels/Cashier/MoneyTransferSearchModel.cs
2024-04-28 12:53:39 +04:00

32 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankContracts.SearchModels.Cashier
{
// Для поиска сущности "Перевод денег"
public class MoneyTransferSearchModel
{
public int? Id { get; set; }
public int? Sum { get; set; }
public int? CashierId { get; set; }
public int? AccountId { get; set; }
public DateTime? DateTransfer { get; set; }
public int? Crediting { get; set; }
public int? ClientId { get; set; } // ТОТ ЖЕ НАСУЩНЫЙ ВОПРОС, А НАДО? тут у меня тоже вопрос , по идеи надо, потому что, как я понял можно перевод со счета на карту можно
// Навский случай типа два аккаунта, один отправитель, другой получатель
public int? AccountSenderId { get; set; }
public int? AccountPayeeId { get; set; }
}
}