Notes/Controllers/ApiController.cs
2023-06-05 11:45:20 -04:00

18 lines
390 B
C#

using Microsoft.AspNetCore.Mvc;
using BinaryDad.Notes.Services;
namespace BinaryDad.Notes.Controllers
{
public class ApiController : ControllerBase
{
private readonly INoteService noteService;
public ApiController(INoteService noteService)
{
this.noteService = noteService;
}
public string Note() => noteService.Get();
}
}