using System.Collections.Generic; using skydiveLogs_api.Domain; namespace skydiveLogs_api.DomainService.Repositories { public interface IUserImageRepository : IRepository { IEnumerable GetAll(User user); } }