21 lines
653 B
C#
Raw Permalink Normal View History

2024-11-13 15:21:19 +04:00
using StudentPerformanceContracts.BindingModels;
using StudentPerformanceContracts.SearchModels;
using StudentPerformanceContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StudentPerformanceContracts.BusinessLogicContracts
{
public interface IStudentLogic
{
List<StudentViewModel>? ReadList(StudentSearchModel? model);
StudentViewModel? ReadElement(StudentSearchModel model);
bool Create(StudentBindingModel model);
bool Update(StudentBindingModel model);
bool Delete(StudentBindingModel model);
}
}