├── .gitattributes ├── .gitignore ├── App ├── App.config ├── App.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── Db ├── CP1252.DBF └── Db.DBF ├── IranSystemConvertor ├── ConvertTo.cs ├── ConvertToIranSystem.cs ├── IranSystemConvertor.csproj ├── IranSystemConvertor.sln └── Properties │ └── AssemblyInfo.cs ├── Packages └── NUnit │ ├── nunit.framework.dll │ ├── nunit.framework.xml │ └── nunit.mocks.dll ├── README.md └── UnitTests ├── Properties └── AssemblyInfo.cs ├── Tests.cs ├── ToIranSystemTests.cs ├── UnitTests.csproj ├── tests.VisualState.xml └── tests.nunit /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/.gitignore -------------------------------------------------------------------------------- /App/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/App/App.config -------------------------------------------------------------------------------- /App/App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/App/App.csproj -------------------------------------------------------------------------------- /App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/App/Program.cs -------------------------------------------------------------------------------- /App/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/App/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Db/CP1252.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/Db/CP1252.DBF -------------------------------------------------------------------------------- /Db/Db.DBF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/Db/Db.DBF -------------------------------------------------------------------------------- /IranSystemConvertor/ConvertTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/IranSystemConvertor/ConvertTo.cs -------------------------------------------------------------------------------- /IranSystemConvertor/ConvertToIranSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/IranSystemConvertor/ConvertToIranSystem.cs -------------------------------------------------------------------------------- /IranSystemConvertor/IranSystemConvertor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/IranSystemConvertor/IranSystemConvertor.csproj -------------------------------------------------------------------------------- /IranSystemConvertor/IranSystemConvertor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/IranSystemConvertor/IranSystemConvertor.sln -------------------------------------------------------------------------------- /IranSystemConvertor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/IranSystemConvertor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Packages/NUnit/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/Packages/NUnit/nunit.framework.dll -------------------------------------------------------------------------------- /Packages/NUnit/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/Packages/NUnit/nunit.framework.xml -------------------------------------------------------------------------------- /Packages/NUnit/nunit.mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/Packages/NUnit/nunit.mocks.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/README.md -------------------------------------------------------------------------------- /UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/UnitTests/Tests.cs -------------------------------------------------------------------------------- /UnitTests/ToIranSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/UnitTests/ToIranSystemTests.cs -------------------------------------------------------------------------------- /UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /UnitTests/tests.VisualState.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/UnitTests/tests.VisualState.xml -------------------------------------------------------------------------------- /UnitTests/tests.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsen-d/IranSystemConvertor/HEAD/UnitTests/tests.nunit --------------------------------------------------------------------------------