13 lines
No EOL
294 B
C#
13 lines
No EOL
294 B
C#
using System.Collections.Generic;
|
|
using BuecherwurmAPI.Models;
|
|
|
|
namespace BuecherwurmAPI.Models
|
|
{
|
|
public interface IItemRepo
|
|
{
|
|
IEnumerable<Item> GetAllItems();
|
|
Item GetItemById(int itemId);
|
|
void NewItem(ItemPost item);
|
|
void DeleteItem(Item item);
|
|
}
|
|
} |