16 lines
494 B
C#
Raw Permalink Normal View History

2024-02-02 11:10:52 +04:00
using EkzamenContracts.BindingModels;
using EkzamenContracts.SearchModels;
using EkzamenContracts.ViewModels;
namespace EkzamenContracts.BusinessLogicsContracts
{
public interface IStudentLogic
{
List<StudentViewModel>? ReadList(StudentSearchModel? model);
StudentViewModel? ReadElement(StudentSearchModel model);
bool Create(StudentBindingModel model);
bool Update(StudentBindingModel model);
bool Delete(StudentBindingModel model);
}
}