12 lines
192 B
C#
12 lines
192 B
C#
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.Data.Interface
|
|
{
|
|
public interface IRepository<T>
|
|
{
|
|
IEnumerable<T> GetAll();
|
|
|
|
T GetById(int id);
|
|
|
|
}
|
|
} |