Sankhya 5.0.404

There is a newer version of this package available.
See the version list below for details.
dotnet add package Sankhya --version 5.0.404
                    
NuGet\Install-Package Sankhya -Version 5.0.404
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Sankhya" Version="5.0.404" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sankhya" Version="5.0.404" />
                    
Directory.Packages.props
<PackageReference Include="Sankhya" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Sankhya --version 5.0.404
                    
#r "nuget: Sankhya, 5.0.404"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Sankhya@5.0.404
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Sankhya&version=5.0.404
                    
Install as a Cake Addin
#tool nuget:?package=Sankhya&version=5.0.404
                    
Install as a Cake Tool

Sankhya SDK

📊⚙️ Sankhya .NET SDK.

GitHub license Time tracker

Sankhya logo

CI/CD

Build status Last commit Tests Coverage Code Smells LoC
Build status GitHub last commit AppVeyor tests (branch) Coverage Code Smells Lines of Code

Code Quality

Codacy Badge Codacy Badge

codecov CodeFactor

Maintainability Test Coverage

Quality Gate Status Maintainability Rating

Technical Debt Duplicated Lines (%)

Reliability Rating Security Rating

Bugs Vulnerabilities


Installation

Github Releases

GitHub last release Github All Releases

Download the latest .zip file from the Releases page.

Nuget package manager

Package Version Downloads
Sankhya Sankhya NuGet Version Sankhya NuGet Downloads

Features

The SDK provides a comprehensive implementation of Sankhya's web services. If the service you need is not included, you can independently implement the request/response and contribute via pull requests.

Key Highlights

  • Know Services: Predefined service wrappers for common operations.
  • Sankhya Wrapper: Handles low-level HTTP requests, serialization, and authentication.
  • Extensibility: Add custom functionality by extending the SDK.

For details, check the Know Services Wiki.


Usage

Dependency Injection (IoC)

Register the Sankhya wrapper using the CrispyWaffle toolkit's Service Locator:

var connectionSankhya = new Connection(); // Fill in your details
ServiceLocator.Register(() => new SankhyaContext(connectionSankhya), LifeStyle.Singleton);
Constructor Injection
public class MyClass
{
    private readonly SankhyaContext _sankhyaContext;

    public MyClass(SankhyaContext sankhyaContext)
    {
        _sankhyaContext = sankhyaContext ?? throw new ArgumentNullException(nameof(sankhyaContext));
    }
}
Manual Resolution
var sankhyaContext = ServiceLocator.Resolve<SankhyaContext>();

Session Management

Retrieve and manage active sessions:

var sessions = KnowServicesRequestWrapper.GetSessions();
foreach (var session in sessions)
{
    KnowServicesRequestWrapper.KillSession(session.Id);
}

Support

If you need help, feel free to open an issue.


Contributing

Contributions are welcome! Check out the CONTRIBUTING.md guide for details.


Contributors

Thanks to all contributors! 💙

<table> <tbody> <tr> <td align="center"> <a href="https://github.com/guibranco"> <img src="https://avatars.githubusercontent.com/u/3362854?v=4" width="100;" alt="guibranco"/> <br /> <sub><b>Guilherme Branco Stracini</b></sub> </a> </td> <td align="center"> <a href="https://github.com/fandriyaninkov"> <img src="https://avatars.githubusercontent.com/u/18394528?v=4" width="100;" alt="fandriyaninkov"/> <br /> <sub><b>Fedor Andriyaninkov</b></sub> </a> </td> <td align="center"> <a href="https://github.com/pedrowindisch"> <img src="https://avatars.githubusercontent.com/u/30203228?v=4" width="100;" alt="pedrowindisch"/> <br /> <sub><b>Pedro Henrique</b></sub> </a> </td> <td align="center"> <a href="https://github.com/viktoriussuwandi"> <img src="https://avatars.githubusercontent.com/u/68414300?v=4" width="100;" alt="viktoriussuwandi"/> <br /> <sub><b>Viktorius Suwandi</b></sub> </a> </td> </tr> <tbody> </table>

Bots

<table> <tbody> <tr> <td align="center"> <a href="https://github.com/dependabot[bot]"> <img src="https://avatars.githubusercontent.com/in/29110?v=4" width="100;" alt="dependabot[bot]"/> <br /> <sub><b>dependabot[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/github-actions[bot]"> <img src="https://avatars.githubusercontent.com/in/15368?v=4" width="100;" alt="github-actions[bot]"/> <br /> <sub><b>github-actions[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/penify-dev[bot]"> <img src="https://avatars.githubusercontent.com/in/399279?v=4" width="100;" alt="penify-dev[bot]"/> <br /> <sub><b>penify-dev[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/stack-file[bot]"> <img src="https://avatars.githubusercontent.com/in/408123?v=4" width="100;" alt="stack-file[bot]"/> <br /> <sub><b>stack-file[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/gitauto-ai[bot]"> <img src="https://avatars.githubusercontent.com/in/844909?v=4" width="100;" alt="gitauto-ai[bot]"/> <br /> <sub><b>gitauto-ai[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/codefactor-io[bot]"> <img src="https://avatars.githubusercontent.com/in/25603?v=4" width="100;" alt="codefactor-io[bot]"/> <br /> <sub><b>codefactor-io[bot]</b></sub> </a> </td> </tr> <tr> <td align="center"> <a href="https://github.com/snyk-bot"> <img src="https://avatars.githubusercontent.com/u/19733683?v=4" width="100;" alt="snyk-bot"/> <br /> <sub><b>Snyk bot</b></sub> </a> </td> </tr> <tbody> </table>

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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 is compatible.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Sankhya:

Package Downloads
EditoraInovacao.Sankhya.Entities

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.434 70 9/29/2025
5.0.431 210 9/22/2025
5.0.428 229 9/15/2025
5.0.425 225 9/15/2025
5.0.422 222 9/15/2025
5.0.415 145 9/8/2025
5.0.412 143 9/8/2025
5.0.409 146 9/8/2025
5.0.404 146 9/8/2025
5.0.395 155 9/3/2025
5.0.392 150 9/1/2025
5.0.385 173 8/29/2025
5.0.380 258 8/25/2025
5.0.375 262 8/25/2025
5.0.372 144 8/18/2025
5.0.359 141 8/18/2025
5.0.356 157 8/11/2025
5.0.351 146 8/11/2025
5.0.348 155 8/4/2025
5.0.345 126 7/28/2025
5.0.341 129 7/28/2025
5.0.334 131 7/28/2025
5.0.331 133 7/28/2025
5.0.322 490 7/24/2025
5.0.315 482 7/23/2025
5.0.310 488 7/23/2025
5.0.303 486 7/23/2025
5.0.286 155 7/14/2025
5.0.283 156 7/14/2025
5.0.274 156 7/14/2025
5.0.271 161 7/7/2025
5.0.266 166 7/7/2025
5.0.263 163 6/30/2025
5.0.260 164 6/30/2025
5.0.255 173 6/23/2025
5.0.252 172 6/23/2025
5.0.247 185 6/16/2025
5.0.244 237 6/9/2025
5.0.241 253 6/9/2025
5.0.238 188 6/2/2025
5.0.235 199 5/26/2025
5.0.232 199 5/19/2025
5.0.229 194 5/19/2025
5.0.224 260 5/12/2025
5.0.221 184 5/8/2025
5.0.212 202 5/5/2025
5.0.207 191 4/28/2025
5.0.202 214 4/28/2025
5.0.197 232 4/21/2025
5.0.192 216 4/21/2025
5.0.189 269 4/14/2025
5.0.186 242 4/14/2025
5.0.181 221 4/7/2025
5.0.178 232 4/7/2025
5.0.173 222 3/31/2025
5.0.170 417 3/24/2025
5.0.167 407 3/24/2025
5.0.162 404 3/24/2025
5.0.159 208 3/17/2025
5.0.156 193 3/17/2025
5.0.151 202 3/17/2025
5.0.144 212 3/17/2025
5.0.141 262 3/10/2025
5.0.138 231 3/10/2025
5.0.135 186 3/3/2025
5.0.132 184 3/3/2025
5.0.127 214 2/24/2025
5.0.124 161 2/24/2025
5.0.119 164 2/24/2025
5.0.116 185 2/21/2025
5.0.113 182 2/21/2025
5.0.107 194 2/17/2025
5.0.102 186 2/17/2025
5.0.93 189 2/10/2025
5.0.90 196 2/10/2025
5.0.85 2,385 2/3/2025
5.0.82 165 2/3/2025
5.0.77 154 2/3/2025
5.0.74 225 1/27/2025
5.0.71 132 1/27/2025
5.0.66 148 1/27/2025
5.0.59 153 1/21/2025
5.0.58 448 1/20/2025
5.0.55 147 1/20/2025
5.0.52 161 1/20/2025
5.0.47 144 1/20/2025
5.0.38 142 1/13/2025
5.0.35 140 1/13/2025
5.0.32 140 1/13/2025
5.0.28 341 1/13/2025
5.0.19 142 1/13/2025
5.0.8 139 1/13/2025
4.1.106 254 1/6/2025
4.1.103 139 1/6/2025
4.1.98 141 1/6/2025
4.1.91 145 1/6/2025
4.1.84 154 12/31/2024
4.1.80 153 12/30/2024
4.1.77 144 12/30/2024
4.1.65 210 12/30/2024
4.1.57 152 12/30/2024
4.1.52 157 12/27/2024
4.1.47 161 12/27/2024
4.0.34 154 12/27/2024
4.0.25 149 12/27/2024
4.0.15 145 12/27/2024
4.0.8 164 12/27/2024
3.1.134 159 12/27/2024
3.1.126 325 12/23/2024
3.1.123 154 12/23/2024
3.1.118 151 12/23/2024
3.1.108 315 12/16/2024
3.1.103 161 12/16/2024
3.1.98 219 12/9/2024
3.1.95 157 12/9/2024
3.1.92 144 12/9/2024
3.1.83 386 12/2/2024
3.1.80 149 12/2/2024
3.1.75 145 12/2/2024
3.1.66 146 12/2/2024
3.1.61 394 11/25/2024
3.1.58 156 11/25/2024
3.1.53 159 11/25/2024
3.1.42 146 11/18/2024
3.1.37 327 11/18/2024
3.1.32 149 11/18/2024
3.1.16 158 11/17/2024
3.0.969 161 11/12/2024
3.0.950 165 11/12/2024
3.0.947 152 11/12/2024
3.0.938 344 11/11/2024
3.0.926 318 11/4/2024
3.0.923 149 11/4/2024
3.0.916 253 10/28/2024
3.0.913 147 10/28/2024
3.0.910 146 10/28/2024
3.0.889 312 10/21/2024
3.0.886 166 10/21/2024
3.0.883 158 10/21/2024
3.0.878 169 10/21/2024
3.0.869 168 10/19/2024
3.0.865 195 10/18/2024
3.0.862 185 10/18/2024
3.0.856 168 10/18/2024
3.0.845 153 10/18/2024
3.0.842 294 10/14/2024
3.0.837 171 10/12/2024
3.0.822 147 10/7/2024
3.0.819 149 10/2/2024
3.0.816 174 10/2/2024
3.0.811 158 10/2/2024
3.0.808 158 10/2/2024
3.0.805 166 10/2/2024
3.0.794 406 9/23/2024
3.0.791 177 9/23/2024
3.0.786 163 9/23/2024
3.0.782 187 9/17/2024
3.0.778 318 9/16/2024
3.0.775 185 9/16/2024
3.0.768 241 9/9/2024
3.0.765 181 9/9/2024
3.0.760 173 9/9/2024
3.0.757 159 9/9/2024
3.0.748 308 9/2/2024
3.0.745 173 9/2/2024
3.0.740 170 8/28/2024
3.0.734 180 8/28/2024
3.0.731 150 8/28/2024
3.0.722 191 8/27/2024
3.0.719 167 8/27/2024
3.0.707 170 8/27/2024
3.0.702 179 8/27/2024
3.0.694 185 8/26/2024
3.0.686 171 8/26/2024
3.0.680 301 8/26/2024
3.0.672 149 8/26/2024
3.0.656 188 8/24/2024
3.0.648 200 8/24/2024
3.0.640 883 8/19/2024
3.0.637 172 8/19/2024
3.0.634 180 8/19/2024
3.0.629 173 8/19/2024
3.0.620 205 8/12/2024
3.0.617 171 8/12/2024
3.0.612 174 8/12/2024
3.0.609 157 8/5/2024
3.0.606 126 8/5/2024
3.0.601 185 7/29/2024
3.0.598 165 7/29/2024
3.0.589 173 7/22/2024
3.0.586 175 7/22/2024
3.0.567 229 7/22/2024
3.0.564 141 7/20/2024
3.0.563 162 7/20/2024
3.0.559 180 7/20/2024
3.0.549 152 7/17/2024
3.0.545 163 7/17/2024
3.0.542 155 7/17/2024
3.0.539 143 7/16/2024
3.0.535 174 7/15/2024
3.0.530 158 7/15/2024
3.0.523 163 7/15/2024
3.0.514 151 7/12/2024
3.0.511 156 7/12/2024
3.0.506 147 7/12/2024
3.0.503 135 7/12/2024
3.0.500 148 7/12/2024
3.0.477 173 7/8/2024
3.0.470 200 7/3/2024
3.0.467 197 7/1/2024
3.0.464 183 7/1/2024
3.0.459 200 6/24/2024
3.0.456 210 6/17/2024
3.0.453 173 6/17/2024
3.0.448 181 6/10/2024
3.0.445 174 6/3/2024
3.0.442 170 6/3/2024
3.0.437 143 5/27/2024
3.0.434 204 5/27/2024
3.0.429 168 5/27/2024
3.0.422 176 5/27/2024
3.0.413 178 5/27/2024
3.0.402 186 5/20/2024
3.0.399 188 5/19/2024
3.0.393 167 5/13/2024
3.0.390 218 5/6/2024
3.0.387 180 4/30/2024
3.0.384 173 4/30/2024
3.0.380 181 4/30/2024
3.0.373 205 4/30/2024
3.0.364 173 4/30/2024
3.0.361 176 4/29/2024
3.0.348 174 4/22/2024
3.0.345 156 4/22/2024
3.0.340 208 4/22/2024
3.0.337 192 4/22/2024
3.0.328 205 4/15/2024
3.0.325 185 4/15/2024
3.0.320 177 4/15/2024
3.0.313 187 4/15/2024
3.0.304 213 4/8/2024
3.0.301 175 4/8/2024
3.0.296 186 4/8/2024
3.0.289 211 4/1/2024
3.0.286 176 4/1/2024
3.0.281 224 3/25/2024
3.0.278 186 3/25/2024
3.0.273 192 3/18/2024
3.0.270 204 3/18/2024
3.0.265 199 3/11/2024
3.0.262 184 3/11/2024
3.0.257 231 3/4/2024
3.0.254 195 2/26/2024
3.0.251 216 2/26/2024
3.0.246 186 2/26/2024
3.0.239 169 2/19/2024
3.0.236 162 2/19/2024
3.0.231 179 2/19/2024
3.0.224 178 2/19/2024
3.0.215 179 2/14/2024
3.0.210 197 2/12/2024
3.0.207 215 2/12/2024
3.0.204 205 2/12/2024
3.0.197 219 2/7/2024
3.0.188 189 2/6/2024
3.0.184 196 2/5/2024
3.0.178 174 1/30/2024
3.0.175 185 1/30/2024
3.0.170 175 1/29/2024
3.0.163 179 1/29/2024
3.0.156 194 1/29/2024
3.0.142 172 1/24/2024
3.0.139 186 1/24/2024
3.0.136 156 1/23/2024
3.0.129 185 1/23/2024
3.0.124 179 1/23/2024
3.0.117 171 1/22/2024
3.0.114 171 1/22/2024
3.0.107 198 1/22/2024
3.0.102 177 1/22/2024
3.0.97 177 1/22/2024
3.0.86 240 1/16/2024
3.0.83 179 1/16/2024
3.0.71 200 1/15/2024
3.0.62 193 1/8/2024
3.0.59 245 1/1/2024
3.0.56 203 12/25/2023
3.0.53 184 12/25/2023
3.0.48 196 12/25/2023
3.0.41 166 12/25/2023
3.0.32 1,471 12/18/2023
3.0.5 203 12/17/2023
2.0.773 194 12/14/2023
2.0.767 227 12/11/2023
2.0.764 200 12/11/2023
2.0.759 206 12/11/2023
2.0.752 232 12/11/2023
2.0.743 173 12/11/2023
2.0.732 209 12/11/2023
2.0.729 201 12/6/2023
2.0.724 224 12/4/2023
2.0.721 182 12/4/2023
2.0.716 178 12/4/2023
2.0.709 180 12/4/2023
2.0.698 160 11/27/2023
2.0.695 153 11/27/2023
2.0.690 1,592 11/21/2023
2.0.686 175 11/21/2023
2.0.681 189 11/20/2023
2.0.674 188 11/20/2023
2.0.665 272 11/14/2023
2.0.658 185 11/14/2023
2.0.653 177 11/14/2023
2.0.650 178 11/14/2023
2.0.643 188 11/14/2023
2.0.636 171 11/14/2023
2.0.623 149 11/13/2023
2.0.614 218 11/9/2023
2.0.606 188 11/6/2023
2.0.601 240 10/30/2023
2.0.598 189 10/30/2023
2.0.595 190 10/30/2023
2.0.590 195 10/26/2023
2.0.586 219 10/23/2023
2.0.583 187 10/23/2023
2.0.578 229 10/17/2023
2.0.575 230 10/17/2023
2.0.570 192 10/17/2023
2.0.563 203 10/16/2023
2.0.554 170 10/16/2023
2.0.543 224 10/16/2023
2.0.530 198 10/10/2023
2.0.526 201 10/10/2023
2.0.519 213 10/8/2023
2.0.512 155 10/8/2023
2.0.495 214 10/8/2023
2.0.486 217 10/8/2023
2.0.450 206 10/2/2023
2.0.447 208 10/2/2023
2.0.442 239 9/25/2023
2.0.439 209 9/25/2023
2.0.434 200 9/23/2023
2.0.431 160 9/19/2023
2.0.428 167 9/19/2023
2.0.419 239 9/16/2023
2.0.416 237 9/13/2023
2.0.413 208 9/12/2023
2.0.408 223 9/12/2023
2.0.401 197 9/12/2023
2.0.392 220 9/6/2023
2.0.387 405 9/4/2023
2.0.384 318 8/28/2023
2.0.381 216 8/28/2023
2.0.376 289 8/24/2023
2.0.373 471 8/14/2023
2.0.344 317 8/9/2023
2.0.337 258 8/9/2023
2.0.332 257 8/9/2023
2.0.325 447 7/29/2023
2.0.322 262 7/29/2023
2.0.315 223 7/29/2023
2.0.311 332 7/24/2023
2.0.308 263 7/24/2023
2.0.302 309 7/17/2023
2.0.299 234 7/17/2023
2.0.284 262 7/12/2023
2.0.272 360 7/10/2023
2.0.265 279 7/10/2023
2.0.256 358 7/3/2023
2.0.253 261 7/3/2023
2.0.248 278 7/3/2023
2.0.241 405 6/19/2023
2.0.238 277 6/19/2023
2.0.233 422 6/15/2023
2.0.230 315 6/15/2023
2.0.225 316 6/15/2023
2.0.218 362 6/6/2023
2.0.215 331 6/5/2023
2.0.210 251 6/5/2023
2.0.203 252 6/5/2023
2.0.191 555 5/22/2023
2.0.188 284 5/22/2023
2.0.183 368 5/15/2023
2.0.180 330 5/15/2023
2.0.175 388 5/8/2023
2.0.168 269 5/8/2023
2.0.163 510 5/4/2023
2.0.160 299 5/3/2023
2.0.155 531 4/10/2023
2.0.152 319 4/10/2023
2.0.147 309 4/9/2023
2.0.141 297 4/4/2023
2.0.136 460 4/3/2023
2.0.133 337 4/3/2023
2.0.128 434 3/27/2023
2.0.125 325 3/27/2023
2.0.122 372 3/27/2023
2.0.119 315 3/27/2023
2.0.111 361 3/26/2023
2.0.108 392 3/22/2023
2.0.103 363 3/21/2023
2.0.98 351 3/21/2023
2.0.91 447 3/5/2023
2.0.86 365 3/5/2023
2.0.82 352 3/5/2023
2.0.76 355 3/3/2023
2.0.75 357 3/3/2023
2.0.65 395 2/28/2023
2.0.62 417 1/30/2023
2.0.59 513 1/23/2023
2.0.56 385 1/23/2023
2.0.53 418 1/19/2023
2.0.52 416 1/17/2023
2.0.51 670 1/16/2023
2.0.50 437 1/16/2023
2.0.47 403 1/16/2023
2.0.40 416 1/16/2023
2.0.35 398 1/16/2023
2.0.29 391 1/16/2023
2.0.26 432 1/16/2023
2.0.20 433 1/16/2023
1.0.2 1,658 9/22/2019

Chore