Files
WorkFlowCheck/src/WorkFlowCheck.BL/Services/Interfaces/IUserService.cs
T
2025-01-21 15:52:30 +01:00

16 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WorkFlowCheck.Common.DTO;
namespace WorkFlowCheck.BL.Services.Interfaces
{
public interface IUserService
{
Task<UserDTO> GetUser(int Id);
Task<UserDTO> Authenticate(string UserName, string Password);
}
}