25 lines
416 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankDataModels.Models.Cashier
{
//перевод денег
public interface IMoneyTransferModel : IId
{
int Sum { get; }
int? AccountSenderId { get; }
2024-04-28 12:43:05 +04:00
int AccountPayeeId { get; }
2024-04-28 12:43:05 +04:00
DateTime DateOperation { get; }
int? CreditingId { get; }
2024-04-28 12:43:05 +04:00
int CashierId { get; }
}
}