Sankhya 5.0.241

There is a newer version of this package available.
See the version list below for details.
dotnet add package Sankhya --version 5.0.241
                    
NuGet\Install-Package Sankhya -Version 5.0.241
                    
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.241" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sankhya" Version="5.0.241" />
                    
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.241
                    
#r "nuget: Sankhya, 5.0.241"
                    
#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.241
                    
#: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.241
                    
Install as a Cake Addin
#tool nuget:?package=Sankhya&version=5.0.241
                    
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.442 158 10/6/2025
5.0.439 159 10/6/2025
5.0.434 162 9/29/2025
5.0.431 229 9/22/2025
5.0.428 246 9/15/2025
5.0.425 243 9/15/2025
5.0.422 227 9/15/2025
5.0.415 150 9/8/2025
5.0.412 157 9/8/2025
5.0.409 160 9/8/2025
5.0.404 161 9/8/2025
5.0.395 169 9/3/2025
5.0.392 165 9/1/2025
5.0.385 188 8/29/2025
5.0.380 273 8/25/2025
5.0.375 279 8/25/2025
5.0.372 158 8/18/2025
5.0.359 155 8/18/2025
5.0.356 172 8/11/2025
5.0.351 162 8/11/2025
5.0.348 169 8/4/2025
5.0.345 141 7/28/2025
5.0.341 133 7/28/2025
5.0.334 145 7/28/2025
5.0.331 148 7/28/2025
5.0.322 504 7/24/2025
5.0.315 496 7/23/2025
5.0.310 502 7/23/2025
5.0.303 500 7/23/2025
5.0.286 172 7/14/2025
5.0.283 170 7/14/2025
5.0.274 172 7/14/2025
5.0.271 175 7/7/2025
5.0.266 181 7/7/2025
5.0.263 177 6/30/2025
5.0.260 178 6/30/2025
5.0.255 196 6/23/2025
5.0.252 191 6/23/2025
5.0.247 200 6/16/2025
5.0.244 251 6/9/2025
5.0.241 267 6/9/2025
5.0.238 207 6/2/2025
5.0.235 221 5/26/2025
5.0.232 217 5/19/2025
5.0.229 211 5/19/2025
5.0.224 281 5/12/2025
5.0.221 198 5/8/2025
5.0.212 219 5/5/2025
5.0.207 206 4/28/2025
5.0.202 236 4/28/2025
5.0.197 249 4/21/2025
5.0.192 233 4/21/2025
5.0.189 284 4/14/2025
5.0.186 258 4/14/2025
5.0.181 239 4/7/2025
5.0.178 251 4/7/2025
5.0.173 233 3/31/2025
5.0.170 436 3/24/2025
5.0.167 425 3/24/2025
5.0.162 418 3/24/2025
5.0.159 222 3/17/2025
5.0.156 199 3/17/2025
5.0.151 216 3/17/2025
5.0.144 229 3/17/2025
5.0.141 284 3/10/2025
5.0.138 247 3/10/2025
5.0.135 205 3/3/2025
5.0.132 203 3/3/2025
5.0.127 231 2/24/2025
5.0.124 175 2/24/2025
5.0.119 179 2/24/2025
5.0.116 202 2/21/2025
5.0.113 201 2/21/2025
5.0.107 217 2/17/2025
5.0.102 207 2/17/2025
5.0.93 203 2/10/2025
5.0.90 216 2/10/2025
5.0.85 2,966 2/3/2025
5.0.82 182 2/3/2025
5.0.77 170 2/3/2025
5.0.74 247 1/27/2025
5.0.71 146 1/27/2025
5.0.66 164 1/27/2025
5.0.59 169 1/21/2025
5.0.58 525 1/20/2025
5.0.55 154 1/20/2025
5.0.52 170 1/20/2025
5.0.47 158 1/20/2025
5.0.38 157 1/13/2025
5.0.35 157 1/13/2025
5.0.32 159 1/13/2025
5.0.28 387 1/13/2025
5.0.19 148 1/13/2025
5.0.8 154 1/13/2025
4.1.106 285 1/6/2025
4.1.103 154 1/6/2025
4.1.98 164 1/6/2025
4.1.91 159 1/6/2025
4.1.84 168 12/31/2024
4.1.80 172 12/30/2024
4.1.77 161 12/30/2024
4.1.65 238 12/30/2024
4.1.57 170 12/30/2024
4.1.52 174 12/27/2024
4.1.47 182 12/27/2024
4.0.34 176 12/27/2024
4.0.25 163 12/27/2024
4.0.15 160 12/27/2024
4.0.8 180 12/27/2024
3.1.134 183 12/27/2024
3.1.126 362 12/23/2024
3.1.123 171 12/23/2024
3.1.118 169 12/23/2024
3.1.108 354 12/16/2024
3.1.103 178 12/16/2024
3.1.98 247 12/9/2024
3.1.95 176 12/9/2024
3.1.92 162 12/9/2024
3.1.83 436 12/2/2024
3.1.80 164 12/2/2024
3.1.75 159 12/2/2024
3.1.66 161 12/2/2024
3.1.61 465 11/25/2024
3.1.58 176 11/25/2024
3.1.53 178 11/25/2024
3.1.42 160 11/18/2024
3.1.37 373 11/18/2024
3.1.32 168 11/18/2024
3.1.16 177 11/17/2024
3.0.969 175 11/12/2024
3.0.950 183 11/12/2024
3.0.947 169 11/12/2024
3.0.938 384 11/11/2024
3.0.926 354 11/4/2024
3.0.923 171 11/4/2024
3.0.916 273 10/28/2024
3.0.913 161 10/28/2024
3.0.910 161 10/28/2024
3.0.889 357 10/21/2024
3.0.886 180 10/21/2024
3.0.883 174 10/21/2024
3.0.878 187 10/21/2024
3.0.869 182 10/19/2024
3.0.865 215 10/18/2024
3.0.862 200 10/18/2024
3.0.856 185 10/18/2024
3.0.845 170 10/18/2024
3.0.842 332 10/14/2024
3.0.837 189 10/12/2024
3.0.822 161 10/7/2024
3.0.819 163 10/2/2024
3.0.816 179 10/2/2024
3.0.811 172 10/2/2024
3.0.808 174 10/2/2024
3.0.805 184 10/2/2024
3.0.794 462 9/23/2024
3.0.791 196 9/23/2024
3.0.786 181 9/23/2024
3.0.782 201 9/17/2024
3.0.778 353 9/16/2024
3.0.775 200 9/16/2024
3.0.768 263 9/9/2024
3.0.765 202 9/9/2024
3.0.760 193 9/9/2024
3.0.757 176 9/9/2024
3.0.748 346 9/2/2024
3.0.745 187 9/2/2024
3.0.740 183 8/28/2024
3.0.734 200 8/28/2024
3.0.731 163 8/28/2024
3.0.722 208 8/27/2024
3.0.719 180 8/27/2024
3.0.707 188 8/27/2024
3.0.702 198 8/27/2024
3.0.694 205 8/26/2024
3.0.686 191 8/26/2024
3.0.680 336 8/26/2024
3.0.672 163 8/26/2024
3.0.656 208 8/24/2024
3.0.648 229 8/24/2024
3.0.640 996 8/19/2024
3.0.637 191 8/19/2024
3.0.634 197 8/19/2024
3.0.629 186 8/19/2024
3.0.620 220 8/12/2024
3.0.617 184 8/12/2024
3.0.612 187 8/12/2024
3.0.609 171 8/5/2024
3.0.606 141 8/5/2024
3.0.601 200 7/29/2024
3.0.598 183 7/29/2024
3.0.589 195 7/22/2024
3.0.586 194 7/22/2024
3.0.567 248 7/22/2024
3.0.564 155 7/20/2024
3.0.563 180 7/20/2024
3.0.559 198 7/20/2024
3.0.549 166 7/17/2024
3.0.545 182 7/17/2024
3.0.542 170 7/17/2024
3.0.539 162 7/16/2024
3.0.535 189 7/15/2024
3.0.530 172 7/15/2024
3.0.523 178 7/15/2024
3.0.514 166 7/12/2024
3.0.511 170 7/12/2024
3.0.506 165 7/12/2024
3.0.503 154 7/12/2024
3.0.500 170 7/12/2024
3.0.477 193 7/8/2024
3.0.470 218 7/3/2024
3.0.467 215 7/1/2024
3.0.464 205 7/1/2024
3.0.459 219 6/24/2024
3.0.456 224 6/17/2024
3.0.453 188 6/17/2024
3.0.448 185 6/10/2024
3.0.445 190 6/3/2024
3.0.442 190 6/3/2024
3.0.437 158 5/27/2024
3.0.434 221 5/27/2024
3.0.429 182 5/27/2024
3.0.422 194 5/27/2024
3.0.413 195 5/27/2024
3.0.402 200 5/20/2024
3.0.399 208 5/19/2024
3.0.393 185 5/13/2024
3.0.390 232 5/6/2024
3.0.387 194 4/30/2024
3.0.384 187 4/30/2024
3.0.380 195 4/30/2024
3.0.373 220 4/30/2024
3.0.364 187 4/30/2024
3.0.361 195 4/29/2024
3.0.348 189 4/22/2024
3.0.345 170 4/22/2024
3.0.340 225 4/22/2024
3.0.337 209 4/22/2024
3.0.328 222 4/15/2024
3.0.325 201 4/15/2024
3.0.320 193 4/15/2024
3.0.313 204 4/15/2024
3.0.304 229 4/8/2024
3.0.301 189 4/8/2024
3.0.296 208 4/8/2024
3.0.289 232 4/1/2024
3.0.286 194 4/1/2024
3.0.281 241 3/25/2024
3.0.278 212 3/25/2024
3.0.273 208 3/18/2024
3.0.270 222 3/18/2024
3.0.265 216 3/11/2024
3.0.262 200 3/11/2024
3.0.257 252 3/4/2024
3.0.254 215 2/26/2024
3.0.251 231 2/26/2024
3.0.246 199 2/26/2024
3.0.239 183 2/19/2024
3.0.236 176 2/19/2024
3.0.231 198 2/19/2024
3.0.224 195 2/19/2024
3.0.215 194 2/14/2024
3.0.210 213 2/12/2024
3.0.207 230 2/12/2024
3.0.204 222 2/12/2024
3.0.197 238 2/7/2024
3.0.188 210 2/6/2024
3.0.184 204 2/5/2024
3.0.178 188 1/30/2024
3.0.175 189 1/30/2024
3.0.170 194 1/29/2024
3.0.163 197 1/29/2024
3.0.156 213 1/29/2024
3.0.142 187 1/24/2024
3.0.139 202 1/24/2024
3.0.136 173 1/23/2024
3.0.129 203 1/23/2024
3.0.124 196 1/23/2024
3.0.117 186 1/22/2024
3.0.114 187 1/22/2024
3.0.107 212 1/22/2024
3.0.102 185 1/22/2024
3.0.97 194 1/22/2024
3.0.86 258 1/16/2024
3.0.83 193 1/16/2024
3.0.71 216 1/15/2024
3.0.62 213 1/8/2024
3.0.59 263 1/1/2024
3.0.56 222 12/25/2023
3.0.53 198 12/25/2023
3.0.48 214 12/25/2023
3.0.41 170 12/25/2023
3.0.32 1,499 12/18/2023
3.0.5 220 12/17/2023
2.0.773 215 12/14/2023
2.0.767 244 12/11/2023
2.0.764 207 12/11/2023
2.0.759 211 12/11/2023
2.0.752 239 12/11/2023
2.0.743 177 12/11/2023
2.0.732 217 12/11/2023
2.0.729 217 12/6/2023
2.0.724 241 12/4/2023
2.0.721 199 12/4/2023
2.0.716 198 12/4/2023
2.0.709 186 12/4/2023
2.0.698 174 11/27/2023
2.0.695 159 11/27/2023
2.0.690 1,629 11/21/2023
2.0.686 190 11/21/2023
2.0.681 210 11/20/2023
2.0.674 204 11/20/2023
2.0.665 286 11/14/2023
2.0.658 201 11/14/2023
2.0.653 200 11/14/2023
2.0.650 196 11/14/2023
2.0.643 208 11/14/2023
2.0.636 177 11/14/2023
2.0.623 163 11/13/2023
2.0.614 224 11/9/2023
2.0.606 207 11/6/2023
2.0.601 255 10/30/2023
2.0.598 206 10/30/2023
2.0.595 206 10/30/2023
2.0.590 210 10/26/2023
2.0.586 236 10/23/2023
2.0.583 200 10/23/2023
2.0.578 250 10/17/2023
2.0.575 250 10/17/2023
2.0.570 214 10/17/2023
2.0.563 224 10/16/2023
2.0.554 191 10/16/2023
2.0.543 244 10/16/2023
2.0.530 202 10/10/2023
2.0.526 205 10/10/2023
2.0.519 236 10/8/2023
2.0.512 178 10/8/2023
2.0.495 231 10/8/2023
2.0.486 230 10/8/2023
2.0.450 223 10/2/2023
2.0.447 228 10/2/2023
2.0.442 257 9/25/2023
2.0.439 217 9/25/2023
2.0.434 204 9/23/2023
2.0.431 165 9/19/2023
2.0.428 171 9/19/2023
2.0.419 257 9/16/2023
2.0.416 255 9/13/2023
2.0.413 226 9/12/2023
2.0.408 238 9/12/2023
2.0.401 228 9/12/2023
2.0.392 224 9/6/2023
2.0.387 421 9/4/2023
2.0.384 331 8/28/2023
2.0.381 220 8/28/2023
2.0.376 295 8/24/2023
2.0.373 487 8/14/2023
2.0.344 325 8/9/2023
2.0.337 276 8/9/2023
2.0.332 273 8/9/2023
2.0.325 457 7/29/2023
2.0.322 280 7/29/2023
2.0.315 244 7/29/2023
2.0.311 347 7/24/2023
2.0.308 291 7/24/2023
2.0.302 329 7/17/2023
2.0.299 241 7/17/2023
2.0.284 271 7/12/2023
2.0.272 368 7/10/2023
2.0.265 299 7/10/2023
2.0.256 370 7/3/2023
2.0.253 282 7/3/2023
2.0.248 297 7/3/2023
2.0.241 422 6/19/2023
2.0.238 305 6/19/2023
2.0.233 447 6/15/2023
2.0.230 326 6/15/2023
2.0.225 341 6/15/2023
2.0.218 370 6/6/2023
2.0.215 358 6/5/2023
2.0.210 259 6/5/2023
2.0.203 260 6/5/2023
2.0.191 564 5/22/2023
2.0.188 302 5/22/2023
2.0.183 396 5/15/2023
2.0.180 357 5/15/2023
2.0.175 399 5/8/2023
2.0.168 289 5/8/2023
2.0.163 532 5/4/2023
2.0.160 324 5/3/2023
2.0.155 552 4/10/2023
2.0.152 341 4/10/2023
2.0.147 328 4/9/2023
2.0.141 307 4/4/2023
2.0.136 479 4/3/2023
2.0.133 346 4/3/2023
2.0.128 457 3/27/2023
2.0.125 348 3/27/2023
2.0.122 391 3/27/2023
2.0.119 334 3/27/2023
2.0.111 385 3/26/2023
2.0.108 403 3/22/2023
2.0.103 385 3/21/2023
2.0.98 376 3/21/2023
2.0.91 466 3/5/2023
2.0.86 396 3/5/2023
2.0.82 371 3/5/2023
2.0.76 365 3/3/2023
2.0.75 379 3/3/2023
2.0.65 410 2/28/2023
2.0.62 436 1/30/2023
2.0.59 537 1/23/2023
2.0.56 405 1/23/2023
2.0.53 431 1/19/2023
2.0.52 439 1/17/2023
2.0.51 689 1/16/2023
2.0.50 453 1/16/2023
2.0.47 422 1/16/2023
2.0.40 439 1/16/2023
2.0.35 419 1/16/2023
2.0.29 405 1/16/2023
2.0.26 451 1/16/2023
2.0.20 442 1/16/2023
1.0.2 1,666 9/22/2019

Chore