41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using PolyclinicContracts.BindingModels;
|
|
using PolyclinicContracts.SearchModels;
|
|
using PolyclinicContracts.StoragesContracts;
|
|
using PolyclinicContracts.ViewModels;
|
|
|
|
namespace PolyclinicDatabaseImplement.Implements
|
|
{
|
|
public class CourseStorage : ICourseStorage
|
|
{
|
|
public CourseViewModel? Delete(CourseBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public CourseViewModel? GetElement(CourseSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<CourseViewModel> GetFilteredList(CourseSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<CourseViewModel> GetFullList()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public CourseViewModel? Insert(CourseBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public CourseViewModel? Update(CourseBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|