18 lines
399 B
C#
18 lines
399 B
C#
using Contracts.BindingModels;
|
|
using Contracts.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Contracts.BusinessLogicContracts
|
|
{
|
|
public interface IBookLogic
|
|
{
|
|
List<BookViewModel> Read(BookBindingModel model);
|
|
void CreateOrUpdate(BookBindingModel model);
|
|
void Delete(BookBindingModel model);
|
|
}
|
|
}
|