Files
MotoresArgentinosV2/Backend/MotoresArgentinosV2.Core/Interfaces/IUsuariosLegacyService.cs
2026-01-29 13:43:44 -03:00

10 lines
295 B
C#

using MotoresArgentinosV2.Core.DTOs;
namespace MotoresArgentinosV2.Core.Interfaces;
public interface IUsuariosLegacyService
{
Task<UsuarioLegacyDto?> ObtenerParticularPorUsuarioAsync(string nombreUsuario);
Task<AgenciaLegacyDto?> ObtenerAgenciaPorUsuarioAsync(string nombreUsuario);
}