36 lines
933 B
C#
36 lines
933 B
C#
using PolyclinicContracts.BindingModels;
|
|
using PolyclinicContracts.BusinessLogicsContracts;
|
|
using PolyclinicContracts.SearchModels;
|
|
using PolyclinicContracts.ViewModels;
|
|
|
|
namespace PolyclinicBusinessLogic.BusinessLogics
|
|
{
|
|
public class CourseLogic : ICourseLogic
|
|
{
|
|
public bool Create(CourseBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Delete(CourseBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public CourseViewModel? ReadElement(CourseSearchModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public List<CourseViewModel>? ReadList(CourseSearchModel? model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Update(CourseBindingModel model)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|