using NG_2023_Kanban.BusinessLayer.Models; namespace NG_2023_Kanban.BusinessLayer.Interfaces { public interface IUserService { Task GetAsync(int id); Task> GetAllAsync(); Task DeleteAsync(int id); Task UpdateAsync(int id, UserModel user); Task LoginAsync(UserModel user); Task RegisterAsync(UserModel user); } }