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

27 lines
769 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 Account : IAccountModel
{
public string AccountNumber => throw new NotImplementedException();
public int CashierId => throw new NotImplementedException();
public int ClientId => throw new NotImplementedException();
public string PasswordAccount => throw new NotImplementedException();
public double Balance => throw new NotImplementedException();
public DateTime DateOpen => throw new NotImplementedException();
public int Id => throw new NotImplementedException();
}
}