Промежуточное сохранение.
This commit is contained in:
parent
a346034009
commit
55e1775d96
@ -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