Primera subida

This commit is contained in:
Alejandro Sarmiento
2024-04-06 03:32:16 +02:00
parent c97b4a8179
commit b672887299
44 changed files with 44426 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using AutoMapper;
using back.Application.Contracts.Persistence;
using back.Application.Contracts.Services;
using back.Entities;
using back.Entities.DTOs.Request;
using back.Entities.DTOs.Response;
using back.Infra;
using System.Runtime.CompilerServices;
namespace back.Application.Services
{
public class PersonaService : GenericService<Persona, PersonaRequestDto, PersonaUpdateRequestDto>
{
public PersonaService(IMapper mapper, IAsyncRepository<Persona> repo) : base(mapper, repo)
{
}
}
}