10 lines
295 B
C#
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);
|
||
|
|
}
|