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 VisitLogic : ILogic<Visit, VisitViewModel, VisitSearchModel>
|
|
{
|
|
private readonly IStorage<Visit> _visitStorage;
|
|
private readonly ILogger<VisitLogic> _logger;
|
|
|
|
public VisitLogic(IStorage<Visit> visitStorage, ILogger<VisitLogic> logger)
|
|
{
|
|
_visitStorage = visitStorage;
|
|
_logger = logger;
|
|
}
|
|
|
|
public bool Create(Visit model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Delete(Visit model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public VisitViewModel? ReadElement(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<VisitViewModel>? ReadList(VisitSearchModel? searchModel)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Update(Visit model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|