rpstrackeraspcore/RPS.Data/IPtUserRepository.cs

11 строки
173 B
C#

using RPS.Core.Models;
using System.Collections.Generic;
namespace RPS.Data
{
public interface IPtUserRepository
{
IEnumerable<PtUser> GetAll();
}
}