using Microsoft.AspNetCore.Mvc; using SytelineSaAppEfDataModel.Dtos; using SytelineSaAppEfDataModel.Services; namespace FaKrosnoApi.Controllers; [ApiController] [Route("api/[controller]")] public class CustomerController(ICustomerService service) : Controller { [HttpGet] public async Task>> GetAllCustomers() { IList customers = await service.GetAllCustomers(); return Ok(customers); } }