CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptDatabaseImplement/Models/MoneyTransfer.cs
2023-04-01 15:33:39 +04:00

23 lines
635 B
C#

using BankYouBankruptDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDatabaseImplement.Models
{
public class MoneyTransfer : IMoneyTransferModel
{
public int Sum => throw new NotImplementedException();
public int AccountSenderId => throw new NotImplementedException();
public int AccountPayeeId => throw new NotImplementedException();
public DateTime DateOperation => throw new NotImplementedException();
public int Id => throw new NotImplementedException();
}
}