Skip to content

Commit

Permalink
Merge pull request #60 from AndresRamos/actualizar-ejemplos
Browse files Browse the repository at this point in the history
Actualizar ejemplos
  • Loading branch information
AndresRamos authored Apr 9, 2023
2 parents 45b6b8f + d0fb14f commit d6bf728
Show file tree
Hide file tree
Showing 25 changed files with 1,491 additions and 589 deletions.
14 changes: 14 additions & 0 deletions ARSoftware.Contpaqi.Comercial.sln
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sdk.ConsoleApp", "samples\S
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sdk.Extras.WpfApp", "samples\Sdk.Extras.WpfApp\Sdk.Extras.WpfApp.csproj", "{44D515D2-3CB4-4A0D-B711-EDCED2204307}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sql.ConsoleApp", "samples\Sql.ConsoleApp\Sql.ConsoleApp.csproj", "{BFBBDE0B-876D-43C8-98DA-E2F798D373BF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.Common", "samples\Samples.Common\Samples.Common.csproj", "{5D6A92F2-8671-401E-8B5B-B1BCEC3EEF5E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -63,6 +67,14 @@ Global
{44D515D2-3CB4-4A0D-B711-EDCED2204307}.Debug|Any CPU.Build.0 = Debug|Any CPU
{44D515D2-3CB4-4A0D-B711-EDCED2204307}.Release|Any CPU.ActiveCfg = Release|Any CPU
{44D515D2-3CB4-4A0D-B711-EDCED2204307}.Release|Any CPU.Build.0 = Release|Any CPU
{BFBBDE0B-876D-43C8-98DA-E2F798D373BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BFBBDE0B-876D-43C8-98DA-E2F798D373BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BFBBDE0B-876D-43C8-98DA-E2F798D373BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BFBBDE0B-876D-43C8-98DA-E2F798D373BF}.Release|Any CPU.Build.0 = Release|Any CPU
{5D6A92F2-8671-401E-8B5B-B1BCEC3EEF5E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D6A92F2-8671-401E-8B5B-B1BCEC3EEF5E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D6A92F2-8671-401E-8B5B-B1BCEC3EEF5E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D6A92F2-8671-401E-8B5B-B1BCEC3EEF5E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -76,6 +88,8 @@ Global
{3202C9C7-70D6-474D-8953-970BD250746E} = {CFD90884-02FA-46CD-91B7-859A76C43404}
{4BAE5C2C-047A-4E49-A233-A5B72471B3BB} = {789B7A52-4364-40CD-9DFF-60491464C56B}
{44D515D2-3CB4-4A0D-B711-EDCED2204307} = {789B7A52-4364-40CD-9DFF-60491464C56B}
{BFBBDE0B-876D-43C8-98DA-E2F798D373BF} = {789B7A52-4364-40CD-9DFF-60491464C56B}
{5D6A92F2-8671-401E-8B5B-B1BCEC3EEF5E} = {789B7A52-4364-40CD-9DFF-60491464C56B}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3588233E-0044-4A6F-ACB1-262819D2D760}
Expand Down
14 changes: 14 additions & 0 deletions samples/Samples.Common/Models/Dtos/ClienteDto.cs
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;
}
11 changes: 11 additions & 0 deletions samples/Samples.Common/Models/Dtos/ConceptoDto.cs
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; }
}
13 changes: 13 additions & 0 deletions samples/Samples.Common/Models/Dtos/DocumentoDto.cs
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; }
}
12 changes: 12 additions & 0 deletions samples/Samples.Common/Models/Dtos/ProductoDto.cs
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;
}
9 changes: 9 additions & 0 deletions samples/Samples.Common/Samples.Common.csproj
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>
108 changes: 0 additions & 108 deletions samples/Sdk.Extras.ConsoleApp/Catalogos/ClienteSdk.cs

This file was deleted.

57 changes: 0 additions & 57 deletions samples/Sdk.Extras.ConsoleApp/Catalogos/ConceptoSdk.cs

This file was deleted.

Loading

0 comments on commit d6bf728

Please sign in to comment.