15 lines
278 B
C#
15 lines
278 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using skydiveLogs_api.Model;
|
|
|
|
namespace skydiveLogs_api.Data.Interface
|
|
{
|
|
public interface IDropZoneRepository
|
|
{
|
|
IEnumerable<DropZone> GetAllDzs();
|
|
|
|
DropZone GetDzById(int id);
|
|
}
|
|
}
|