Separated app into three layers, cleaned up leftovers

This commit is contained in:
Richárd Kunkli
2020-10-24 23:23:22 +02:00
parent 96003c21dd
commit 52667d913d
20 changed files with 237 additions and 106 deletions

View File

@ -0,0 +1,10 @@
using Birdmap.DAL.Entities;
using System.Threading.Tasks;
namespace Birdmap.BLL.Interfaces
{
public interface IAuthService
{
Task<User> AuthenticateUserAsync(string username, string password);
}
}