46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
using MedicalDatabaseContracts;
|
|
using MedicalDatabaseContracts.Models;
|
|
using MedicalDatabaseContracts.SearchModels;
|
|
using MedicalDatabaseContracts.ViewModels;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MedicalBusinessLogic.BusinessLogics
|
|
{
|
|
public class DoctorLogic : ILogic<Doctor, DoctorViewModel, DoctorSearchModel>
|
|
{
|
|
private readonly IStorage<Doctor> _doctorStorage;
|
|
private readonly ILogger<DoctorLogic> _logger;
|
|
|
|
public DoctorLogic(IStorage<Doctor> doctorStorage, ILogger<DoctorLogic> logger)
|
|
{
|
|
_doctorStorage = doctorStorage;
|
|
_logger = logger;
|
|
}
|
|
|
|
public bool Create(Doctor model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Delete(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public DoctorViewModel? ReadElement(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<DoctorViewModel>? ReadList(DoctorSearchModel? searchModel)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Update(Doctor model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|