Merge branch 'main' of http://student.git.athene.tech/shadowik/CourseWork_BankYouBankrupt
This commit is contained in:
commit
4d1fd9354d
@ -8,6 +8,6 @@ namespace BankYouBankruptDataModels
|
|||||||
{
|
{
|
||||||
public interface IId
|
public interface IId
|
||||||
{
|
{
|
||||||
int Id { get; set; }
|
int Id { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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; }
|
||||||
|
}
|
||||||
|
}
|
@ -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
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -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; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user