using skydiveLogs_api.Model; using System.Collections.Generic; namespace skydiveLogs_api.Data.Interface { public interface IGearRepository : IRepository { IEnumerable GetAll(User connectedUser); } }