-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from AndresRamos/actualizar-ejemplos
Actualizar ejemplos
- Loading branch information
Showing
25 changed files
with
1,491 additions
and
589 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// ReSharper disable InconsistentNaming | ||
|
||
namespace Samples.Common.Models.Dtos; | ||
|
||
public sealed class ClienteDto | ||
{ | ||
public int CIDCLIENTEPROVEEDOR { get; set; } | ||
public string CCODIGOCLIENTE { get; set; } = string.Empty; | ||
public string CRAZONSOCIAL { get; set; } = string.Empty; | ||
public string CRFC { get; set; } = string.Empty; | ||
public int CTIPOCLIENTE { get; set; } | ||
public string CUSOCFDI { get; set; } = string.Empty; | ||
public string CREGIMFISC { get; set; } = string.Empty; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// ReSharper disable InconsistentNaming | ||
|
||
namespace Samples.Common.Models.Dtos; | ||
|
||
public class ConceptoDto | ||
{ | ||
public int CIDCONCEPTODOCUMENTO { get; set; } | ||
public string CCODIGOCONCEPTO { get; set; } = string.Empty; | ||
public string CNOMBRECONCEPTO { get; set; } = string.Empty; | ||
public int CIDDOCUMENTODE { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// ReSharper disable InconsistentNaming | ||
|
||
namespace Samples.Common.Models.Dtos; | ||
|
||
public sealed class DocumentoDto | ||
{ | ||
public DateTime CFECHA { get; set; } | ||
public int CIDCONCEPTODOCUMENTO { get; set; } | ||
public string CSERIEDOCUMENTO { get; set; } = string.Empty; | ||
public double CFOLIO { get; set; } | ||
public string CRAZONSOCIAL { get; set; } = string.Empty; | ||
public double CTOTAL { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// ReSharper disable InconsistentNaming | ||
|
||
namespace Samples.Common.Models.Dtos; | ||
|
||
public class ProductoDto | ||
{ | ||
public int CIDPRODUCTO { get; set; } | ||
public string CCODIGOPRODUCTO { get; set; } = string.Empty; | ||
public string CNOMBREPRODUCTO { get; set; } = string.Empty; | ||
public int CTIPOPRODUCTO { get; set; } | ||
public string CCLAVESAT { get; set; } = string.Empty; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.