Test
This commit is contained in:
parent
e8ca0a1f51
commit
d1012a40ab
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using ZooDataModels.Models;
|
||||
|
||||
namespace ZooContracts.BindingModels
|
||||
{
|
||||
public class ClientBindingModel : IClientModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string ClientFIO { get; set; }
|
||||
public string Mail { get; set; }
|
||||
public string RegistrationDate { get; set; }
|
||||
public string Password { get; set; }
|
||||
}
|
||||
}
|
16
git/JurasicZoo/ZooDataModels/Models/IClientModel.cs
Normal file
16
git/JurasicZoo/ZooDataModels/Models/IClientModel.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZooDataModels.Models
|
||||
{
|
||||
public interface IClientModel : IId
|
||||
{
|
||||
string ClientFIO { get; }
|
||||
string Mail { get; }
|
||||
string RegistrationDate { get; }
|
||||
string Password { get; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user