Update interface of StatsRepo
This commit is contained in:
@@ -1,13 +1,18 @@
|
||||
using skydiveLogs_api.Domain;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.DomainService.Repositories
|
||||
{
|
||||
public interface IStatsRepository<T> : IRepository<T>
|
||||
public interface IStatsRepository<T>
|
||||
{
|
||||
#region Public Methods
|
||||
|
||||
T GetAll(User user);
|
||||
|
||||
int Add(T newEntity);
|
||||
|
||||
bool Update(T updated);
|
||||
|
||||
#endregion Public Methods
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user