ломаю гит

This commit is contained in:
Alenka 2024-04-27 00:04:06 +04:00
parent 139333ed95
commit 086679ff89
6 changed files with 52 additions and 3 deletions

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.BindingModels
{
public class DescriptionProcedureBildingModel
{
}
}

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using HospitalDataModels.Models;
namespace HospitalContracts.BindingModels
{
public class DiseaseBildingModel : IDiseaseModel
{
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public int DoctorId { get; set; }
public int Id { get; set; }
}
}

View File

@ -0,0 +1,19 @@
using HospitalDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.BindingModels
{
public class PharmacistBildingModel : IPharmacistModel
{
public string FIO { get; set; } = string.Empty;
public string Login { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string PhoneNumber { get; set; } = string.Empty;
public int Id { get; set; }
}
}

View File

@ -8,7 +8,7 @@ using HospitalDataModels.Models;
namespace HospitalContracts.BindingModels
{
public class ProcedureBindingModel : IProcedureModel
public class ProcedureBildingModel : IProcedureModel
{
public string Name { get; set; } = string.Empty;

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace HospitalDataModels.Models
{
internal interface IDisease
public interface IDiseaseModel
{
string Name { get; }
string Description { get; }

View File

@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace HospitalDataModels.Models
{
internal interface IPharmacistModel : IId
public interface IPharmacistModel : IId
{
string FIO { get; }
string Login { get; }