This commit is contained in:
Leozillo73 2024-04-27 15:36:55 +04:00
parent e8ca0a1f51
commit d1012a40ab
2 changed files with 34 additions and 0 deletions

View File

@ -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; }
}
}

View 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; }
}
}