11 lines
208 B
C#
11 lines
208 B
C#
using GerbilManager.Models;
|
|
|
|
namespace GerbilManager.Repositories
|
|
{
|
|
public interface IGerbilRepository
|
|
{
|
|
IEnumerable<Gerbil> GetGerbils();
|
|
|
|
Gerbil GetGerbil(Guid id);
|
|
}
|
|
} |