Retail_manager/RMWPFInterfaceLibrary/Api/IUserEndPoint.cs

11 lines
230 B
C#

using RMWPFInterfaceLibrary.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace RMWPFInterfaceLibrary.Api
{
public interface IUserEndPoint
{
Task<List<UserModel>> GetAll();
}
}