13 lines
271 B
C#
13 lines
271 B
C#
|
using System.Collections.Generic;
|
||
|
using BuecherwurmAPI.Models;
|
||
|
|
||
|
namespace BuecherwurmAPI.Data
|
||
|
{
|
||
|
public interface IItemRepo
|
||
|
{
|
||
|
IEnumerable<Item> GetAllItems();
|
||
|
Item GetItemById(int id);
|
||
|
NewItem(Item item);
|
||
|
DeleteItem(int id);
|
||
|
}
|
||
|
}
|