Files
SkydiveLogs/Back/skydiveLogs-api.Data/Interface/IRepository.cs
2019-11-27 14:06:22 +01:00

13 lines
224 B
C#

using System.Collections.Generic;
namespace skydiveLogs_api.Data.Interface
{
public interface IRepository<T>
{
IEnumerable<T> GetAll();
T GetById(int id);
bool Update(T updated);
}
}