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