using AutoMapper; using Microsoft.EntityFrameworkCore; using SytelineSaAppEfDataModel.Dtos; namespace SytelineSaAppEfDataModel.Services; public class CustomerService(SytelineSaAppDbContext context, IMapper mapper) : ICustomerService { public async Task> GetAllCustomers() { return await context.Customers.Select(x => mapper.Map(x)).ToListAsync(); } }