using Diligent.WebAPI.Data.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Diligent.WebAPI.Business.Services { public interface IAuthenticationService { Task ValidateCustomer(string usernmae,string password); Task GetCustomer(string username); Task GenerateToken(); } }