using skydiveLogs_api.Model; namespace skydiveLogs_api.Data.Interface { public interface IUserRepository : IRepository { User GetByLogin(string login, string password); } }