Иван Алексеев de8ff2cfaf копец
2024-11-13 15:21:19 +04:00

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);
}
}