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