using NG_2023_Kanban.BusinessLayer.Models; namespace NG_2023_Kanban.BusinessLayer.Interfaces { public interface IBoardService { Task GetAsync(int id); Task> GetAllAsync(); } }