20 lines
452 B
C#
20 lines
452 B
C#
using BookContract.BindingModels;
|
|
using BookContract.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BookContract.BusinessLogicContracts
|
|
{
|
|
public interface IHistoryLogic
|
|
{
|
|
List<HistoryViewModel> Read(HistoryBindingModel model);
|
|
|
|
void CreateOrUpdate(HistoryBindingModel model);
|
|
|
|
void Delete(HistoryBindingModel model);
|
|
}
|
|
}
|