Skip to content
Snippets Groups Projects
IUserService.cs 290 B
Newer Older
Lucca Santangelo's avatar
Lucca Santangelo committed
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Tsi1.DataLayer.Entities;

namespace Tsi1.BusinessLayer.Interfaces
{
    public interface IUserService
    {
        Task<User> Authenticate(string username, string password); 
    }
}