SankhyaAPI.Client
4.0.0
dotnet add package SankhyaAPI.Client --version 4.0.0
NuGet\Install-Package SankhyaAPI.Client -Version 4.0.0
<PackageReference Include="SankhyaAPI.Client" Version="4.0.0" />
<PackageVersion Include="SankhyaAPI.Client" Version="4.0.0" />
<PackageReference Include="SankhyaAPI.Client" />
paket add SankhyaAPI.Client --version 4.0.0
#r "nuget: SankhyaAPI.Client, 4.0.0"
#addin nuget:?package=SankhyaAPI.Client&version=4.0.0
#tool nuget:?package=SankhyaAPI.Client&version=4.0.0
👜 SankhyaAPI.Client
Projeto de integração com ERP Sankhya para operação de CRUD!
📑 Índice
🚀 Sobre
Este projeto tem como objetivo disponibilizar, de maneira mais sucinta, métodos mais utilizados para manipulações e retornos de dados. Utilizando a própria API do Sankhya disponível aqui, o projeto abstrai os métodos para o usuário.
📦 Instalação
- Na raiz do seu projeto, use o seguinte comando:
dotnet add package SankhyaAPI.Client --version x.y.z
⚙ Configuração
Este pacote foi pensado para uso com injeção de dependência.
Configure o
SankhyaClientSettings
:SankhyaClientSettings sankhyaSettings = new SankhyaClientSettings(); sankhyaSettings.BaseUrl = "https://seusistema.sankhya.com"; sankhyaSettings.Usuario = "usuario"; sankhyaSettings.Senha = "senha"; builder.Services.Configure<SankhyaClientSettings>(sankhyaSettings);
Injete o serviço:
builder.Services.AddSankhyaClient();
🧠 Validação de modelos
Todos os modelos devem herdar de SankhyaModelBase
. Todas as propriedades devem ser NullableState<T>
. As chaves primárias (com atributo [Key]
) devem estar com:
AutoEnumerable == true
: obrigatoriamenteUnSet
AutoEnumerable == false
: obrigatoriamenteSet
- Nunca podem estar com
Clear
⚙️ Funcionalidades
Exemplo de entidade:
public class ProdutoEntity : SankhyaModelBase { [Key("CODPROD", true)] public NullableState<long> CodProd { get; set; } [XmlElement("CODVOL")] public NullableState<string> CodVol { get; set; } [XmlElement("DESCRPROD")] public NullableState<string> DescrProd { get; set; } [XmlElement("REFFORN")] public NullableState<string> RefForn { get; set; } }
Serviço da entidade usando nome da entidade como string:
public class ProdutoClientService : BaseService<ProdutoEntity> { public ProdutoClientService(IOptions<SankhyaClientSettings> sankhyaApiConfig) : base(sankhyaApiConfig, "Produto") { } }
🧪 Uso
Inserir
var produtos = new List<ProdutoEntity>
{
new() { CodProd = 1, CodVol = "UN", DescrProd = "Produto A", RefForn = "F123" },
new() { CodProd = 2, CodVol = "UN", DescrProd = "Produto B", RefForn = "F456" }
};
var response = await produtoClientService.CreateManyAsync(produtos);
Atualizar
produtos[0].DescrProd = "Produto A Atualizado";
var response = await produtoClientService.UpdateManyAsync(produtos);
Buscar registros com FindAsync
string query = "this.CODPROD = 1 AND this.AD_ATIVO = 'S'";
var produtos = await produtoClientService.FindAsync(query);
Query tipada com QueryRawAsync
string script = "SELECT CODPROD, DESCRPROD FROM TGFPRO WHERE ATIVO = 'S'";
List<ProdutoEntity> resultado = await produtoClientService.QueryRawAsync<ProdutoEntity>(script);
Query como dicionário com QueryAsDictionaryAsync
string script = "SELECT CODPROD, DESCRPROD FROM TGFPRO WHERE ATIVO = 'S'";
List<Dictionary<string, object?>> resultadoDict = await produtoClientService.QueryAsDictionaryAsync(script);
📄 Licença
Este projeto está sob a licença MIT. Veja o arquivo LICENSE para mais detalhes.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net8.0
- Azure.Core (>= 1.44.1)
- Newtonsoft.Json (>= 13.0.3)
- Refit (>= 8.0.0)
- Refit.HttpClientFactory (>= 8.0.0)
- Refit.Xml (>= 7.0.0)
- Swashbuckle.AspNetCore.Swagger (>= 6.8.1)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.8.1)
- Swashbuckle.AspNetCore.SwaggerUI (>= 6.8.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
4.0.0 | 65 | 4/4/2025 | |
3.2.0 | 112 | 4/3/2025 | |
3.1.0 | 141 | 4/2/2025 | |
3.0.1 | 145 | 4/1/2025 | |
3.0.0 | 134 | 4/1/2025 | |
2.1.0 | 234 | 3/31/2025 | |
2.0.0 | 218 | 11/11/2024 | |
1.1.0 | 139 | 11/2/2024 | |
1.0.1 | 122 | 11/1/2024 | |
1.0.0 | 122 | 11/1/2024 | |
0.5.2.11 | 135 | 10/29/2024 | |
0.5.2.10 | 124 | 10/29/2024 | |
0.5.2.9 | 111 | 10/29/2024 | |
0.5.2.8 | 118 | 10/29/2024 | |
0.5.2.7 | 113 | 10/29/2024 | |
0.5.2.6 | 110 | 10/29/2024 | |
0.5.2.5 | 124 | 10/29/2024 | |
0.5.2.4 | 128 | 10/29/2024 | |
0.5.2.3 | 117 | 10/25/2024 | |
0.5.2.2 | 107 | 10/25/2024 | |
0.5.2.1 | 108 | 10/25/2024 | |
0.5.2 | 111 | 10/24/2024 | |
0.5.1 | 114 | 10/24/2024 | |
0.5.0 | 114 | 10/23/2024 | |
0.4.2 | 116 | 10/15/2024 | |
0.4.1 | 116 | 10/15/2024 | |
0.4.0 | 122 | 10/15/2024 | |
0.3.3 | 123 | 10/14/2024 | |
0.3.2 | 118 | 10/14/2024 | |
0.3.1 | 120 | 10/14/2024 | |
0.3.0 | 114 | 10/14/2024 | |
0.2.0 | 119 | 10/12/2024 | |
0.1.2 | 125 | 10/11/2024 | |
0.1.1 | 161 | 10/11/2024 | |
0.1.0 | 116 | 10/11/2024 |