42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
|
|
namespace MotoresArgentinosV2.Core.DTOs;
|
||
|
|
|
||
|
|
public class UsuarioLegacyDto
|
||
|
|
{
|
||
|
|
// Mapeo tentativo basado en convenciones v_particulares
|
||
|
|
public int Part_Id { get; set; }
|
||
|
|
public string Part_Usu_Nombre { get; set; } = string.Empty;
|
||
|
|
public string? Part_Nombre { get; set; } // O razon social
|
||
|
|
public string? Part_Apellido { get; set; }
|
||
|
|
public string? Part_Email { get; set; }
|
||
|
|
public string? Part_Telefono { get; set; }
|
||
|
|
|
||
|
|
// Dirección
|
||
|
|
public string? Part_Calle { get; set; }
|
||
|
|
public string? Part_Nro { get; set; }
|
||
|
|
public string? Part_Localidad { get; set; }
|
||
|
|
public string? Part_CP { get; set; }
|
||
|
|
|
||
|
|
// Fiscal
|
||
|
|
public int? Part_TipoDoc { get; set; }
|
||
|
|
public string? Part_NroDoc { get; set; }
|
||
|
|
public int? Part_IdIVA { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
public class AgenciaLegacyDto
|
||
|
|
{
|
||
|
|
// Mapeo tentativo basado en convenciones v_agencias
|
||
|
|
public int Agen_Id { get; set; }
|
||
|
|
public string Agen_usuario { get; set; } = string.Empty;
|
||
|
|
public string? Agen_Nombre { get; set; } // Razon social
|
||
|
|
public string? Agen_Email { get; set; }
|
||
|
|
public string? Agen_Telefono { get; set; }
|
||
|
|
|
||
|
|
// Dirección
|
||
|
|
public string? Agen_Domicilio { get; set; }
|
||
|
|
public string? Agen_Localidad { get; set; }
|
||
|
|
|
||
|
|
// Fiscal
|
||
|
|
public string? Agen_Cuit { get; set; }
|
||
|
|
public int? Agen_IdIVA { get; set; }
|
||
|
|
}
|