This commit is contained in:
shadowik 2023-04-01 08:10:03 +04:00
commit 4d1fd9354d
4 changed files with 43 additions and 6 deletions

View File

@ -8,6 +8,6 @@ namespace BankYouBankruptDataModels
{ {
public interface IId public interface IId
{ {
int Id { get; set; } int Id { get; }
} }
} }

View File

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
public interface ICashierModel
{
string Password { get; }
string Name { get; }
string Surname { get; }
string Patronymic { get; }
string Email { get; }
string Telephone { get; }
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
public interface IMoneyTransferModel
{
}
}

View File

@ -8,14 +8,16 @@ namespace BankYouBankruptDataModels.Models
{ {
public interface IСlientModel : IId public interface IСlientModel : IId
{ {
string Name { get; set; } string Password { get; }
string Surname { get; set; } string Name { get; }
string Patronymic { get; set; } string Surname { get; }
string Email { get; set; } string Patronymic { get; }
string Telephone { get; set; } string Email { get; }
string Telephone { get; }
} }
} }