11 lines
241 B
C#
11 lines
241 B
C#
|
using NG_2023_Kanban.BusinessLayer.Models;
|
||
|
|
||
|
namespace NG_2023_Kanban.BusinessLayer.Interfaces
|
||
|
{
|
||
|
public interface IBoardService
|
||
|
{
|
||
|
Task<BoardModel> GetAsync(int id);
|
||
|
Task<ICollection<BoardModel>> GetAllAsync();
|
||
|
}
|
||
|
}
|