21 lines
645 B
C#
21 lines
645 B
C#
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 IFormatLogic
|
|
{
|
|
List<FormatViewModel>? ReadList(FormatSearchModel? model);
|
|
FormatViewModel? ReadElement(FormatSearchModel model);
|
|
bool Create(FormatBindingModel model);
|
|
bool Update(FormatBindingModel model);
|
|
bool Delete(FormatBindingModel model);
|
|
}
|
|
}
|