Files
Prog4_Beadando/WD7UVN_HFT_2023241.Endpoint/Controllers/WhoUsesServiceController.cs
2023-12-10 17:27:20 +01:00

26 lines
619 B
C#

using Microsoft.AspNetCore.Mvc;
using WD7UVN_HFT_2023241.Logic;
using System.Linq;
using WD7UVN_HFT_2023241.Models;
namespace WD7UVN_HFT_2023241.Endpoint
{
[ApiController]
[Route("api/WhoUsesService")]
public class WhoUsesServiceController : ControllerBase
{
public ILogicServices LogicServices { get; set; }
public WhoUsesServiceController(ILogicServices LogicServices)
{
this.LogicServices = LogicServices;
}
[HttpGet("{id}")]
public IQueryable<Customer> WhoUsesService([FromQuery] int id)
{
return LogicServices.WhoUsesService(id);
}
}
}