12 lines
255 B
C#
12 lines
255 B
C#
|
using System.Collections.Generic;
|
||
|
using BuecherwurmAPI.Models;
|
||
|
|
||
|
namespace BuecherwurmAPI.Data
|
||
|
{
|
||
|
public interface IInventarRepo
|
||
|
{
|
||
|
IEnumerable<Item> GetAllItems();
|
||
|
Item GetItemById(int id);
|
||
|
void DeleteItem(Item item);
|
||
|
}
|
||
|
}
|