mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-07-17 09:47:23 +00:00
19 lines
373 B
C#
19 lines
373 B
C#
namespace Database.Seed;
|
|
|
|
|
|
public interface IExportDatabase
|
|
{
|
|
void SeedLocations(IEnumerable<Location> locations);
|
|
void SeedUsers(IEnumerable<User> users);
|
|
|
|
void SeedBreweries(IEnumerable<Brewery> breweries);
|
|
}
|
|
|
|
public interface IImportDatabase
|
|
{
|
|
IEnumerable<Location> GetLocations();
|
|
IEnumerable<User> GetUsers();
|
|
|
|
IEnumerable<Brewery> GetBreweries();
|
|
}
|