Init Commit
This commit is contained in:
41
Backend/MotoresArgentinosV2.Core/DTOs/UsuariosLegacyDtos.cs
Normal file
41
Backend/MotoresArgentinosV2.Core/DTOs/UsuariosLegacyDtos.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user