Dongle Disposable gemacht.

Stammdatenimporter hinzu gemacht
This commit is contained in:
Husky
2019-03-06 21:04:04 +01:00
parent e0e9fadd1d
commit 9121fa9282
3 changed files with 49 additions and 34 deletions

View File

@@ -8,7 +8,7 @@ using System.Threading.Tasks;
namespace SanSystem
{
class Dongle
class Dongle: IDisposable
{
uint FirmCode;
uint ProductCode;
@@ -127,6 +127,11 @@ namespace SanSystem
return true;
return false;
}
public void Dispose()
{
CleanDongle();
}
}