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