18 lines
334 B
C#
18 lines
334 B
C#
using skydiveLogs_api.Domain;
|
|
using System.Collections.Generic;
|
|
|
|
namespace skydiveLogs_api.DomainService.Repositories
|
|
{
|
|
public interface IStatsRepository<T>
|
|
{
|
|
#region Public Methods
|
|
|
|
T GetAll(User user);
|
|
|
|
int Add(T newEntity);
|
|
|
|
bool Update(T updated);
|
|
|
|
#endregion Public Methods
|
|
}
|
|
} |