├── .gitattributes ├── .gitignore ├── README.md ├── RuleEngineSample.txt ├── Tests └── FinConcile.Tests │ ├── App.config │ ├── CSVParser.feature │ ├── CSVParser.feature.cs │ ├── CSVParserSteps.cs │ ├── FinConcile.Tests.csproj │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── ReconcileEngine.feature │ ├── ReconcileEngine.feature.cs │ ├── ReconcileEngineSteps.cs │ ├── Resources │ ├── BankMarkoffFile20140113.csv │ └── ClientMarkoffFile20140113.csv │ ├── Rules.feature │ ├── Rules.feature.cs │ ├── RulesEvaluator.feature │ ├── RulesEvaluator.feature.cs │ ├── RulesEvaluatorSteps.cs │ ├── RulesSteps.cs │ ├── Steps │ └── TransactionTestData.cs │ ├── TestUtils │ ├── SpecflowExtensions.cs │ └── Utilities.cs │ ├── TransactionCompare.feature │ ├── TransactionCompare.feature.cs │ ├── TransactionCompareSteps.cs │ └── packages.config ├── libs └── CsvHelper.dll └── src ├── FinConcile.Web ├── App_Start │ ├── BundleConfig.cs │ ├── DIConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ ├── RulesConfig.cs │ └── WebApiConfig.cs ├── ApplicationInsights.config ├── Content │ ├── Onion Architecture.png │ ├── Site.css │ └── paper.css ├── Controllers │ ├── HomeController.cs │ ├── RulesController.cs │ └── TransactionController.cs ├── FinReconcile.Web.csproj ├── Global.asax ├── Global.asax.cs ├── Models │ ├── CompareModel.cs │ └── CompareResult.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── Uploads │ ├── 0819ec5f-00e2-4cee-9c3f-5329b4927a82_ClientMarkoffFile20140113.csv │ ├── 0UNDZ │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── 0f24d9e4-9332-4ab9-9d48-6e6b0d2c51d1_ClientMarkoffFile20140113.csv │ ├── 1CfaJ │ │ ├── ClientMarkoffFile20140113 - Copy.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── 269040e2-217e-41c6-a94c-f29b675b3442_ClientMarkoffFile20140113.csv │ ├── 296Qo │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── 3101f7d2-5382-4b58-929f-da537b089e9a_ClientMarkoffFile20140113.csv │ ├── 37df4d5a-e97e-43b4-b7f6-72c9a191a027_TutukaMarkoffFile20140113.csv │ ├── 6HeDu │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── 711a77d5-4ca8-4d53-b35d-c04949a5ccc8_TutukaMarkoffFile20140113.csv │ ├── 9825f407-4287-4db7-b4c3-1720a78482cd_TutukaMarkoffFile20140113.csv │ ├── 99a6076a-848f-496b-8efe-c58c6a5889b8_ClientMarkoffFile20140113.csv │ ├── CFjOw │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── DRO4e │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── ESQm1 │ │ ├── ClientMarkoffFile20140113 - Copy.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── HQW4Z │ │ ├── ClientMarkoffFile20140113 - Copy.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── MXvV5 │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── TW4YP │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── VpPoT │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── ZUJe6 │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── c90b451a-3e09-473a-b369-b5c81cfed1b4_TutukaMarkoffFile20140113.csv │ ├── c9984e40-58f7-44b5-bd40-07985e03b0e6_TutukaMarkoffFile20140113.csv │ ├── ca9YF │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── ddrPA │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── e338a16e-df45-4edd-97a5-7f33308d85b3_TutukaMarkoffFile20140113.csv │ ├── f27d71aa-928b-4f59-b197-8aeb1b0338d7_ClientMarkoffFile20140113.csv │ ├── fh6Fl │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── hlNhm │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── hoGq2 │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── hwYvL │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── oO8aS │ │ └── TutukaMarkoffFile20140113.csv │ ├── pWioV │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ ├── tpADK │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv │ └── xoRYy │ │ ├── ClientMarkoffFile20140113.csv │ │ └── TutukaMarkoffFile20140113.csv ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Rules │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Transaction │ │ ├── Compare.cshtml │ │ ├── CompareResult.cshtml │ │ ├── CompareResultPartial.cshtml │ │ ├── UnmatchedDetailedReportPartial.cshtml │ │ ├── UnmatchedReport.cshtml │ │ └── UnmatchedReportPartial.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── docs │ ├── CSVParser.html │ ├── ReconcileEngine.html │ ├── Rules.html │ ├── RulesEvaluator.html │ ├── TransactionCompare.html │ ├── css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.css │ │ ├── fonts │ │ │ ├── FontAwesome.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── global.css │ │ ├── master.css │ │ ├── print.css │ │ ├── reset.css │ │ ├── structure.css │ │ └── styles.css │ ├── img │ │ ├── failure.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── inconclusive.png │ │ ├── link.png │ │ └── success.png │ ├── index.html │ ├── js │ │ ├── Chart.StackedBar.js │ │ ├── Chart.min.js │ │ ├── Markdown.Converter.js │ │ ├── Markdown.Extra.js │ │ ├── bootstrap.min.js │ │ ├── featureSearch.js │ │ ├── featuresModel.js │ │ ├── heirarchyBuilder.js │ │ ├── html5.js │ │ ├── jquery-1.8.3.min.js │ │ ├── jquery.highlight-4.closure.js │ │ ├── jquery.js │ │ ├── knockout-3.4.0.js │ │ ├── knockout.mapping-latest.js │ │ ├── logger.js │ │ ├── picklesOverview.js │ │ ├── scripts.js │ │ ├── stringFormatting.js │ │ ├── typeaheadList.js │ │ └── underscore-min.js │ └── pickledFeatures.js ├── favicon.ico ├── finreconcile.html ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config ├── FinReconcile.Core ├── Domain │ ├── Interfaces │ │ ├── IReconcileEngine.cs │ │ └── IReconcileResult.cs │ ├── ReconcileResult.cs │ ├── ReconciledItem.cs │ ├── ReconciledMatchType.cs │ ├── Transaction.cs │ ├── TransactionSet.cs │ └── TransactionType.cs ├── FinReconcile.Core.csproj ├── Properties │ └── AssemblyInfo.cs ├── ReconcileEngine │ ├── IReconcileEngine.cs │ └── ReconcileEngine.cs └── RuleEngine │ ├── IRule.cs │ ├── RuleEngine.cs │ ├── RuleSet.cs │ ├── RuleType.cs │ └── Rules │ ├── DateRule.cs │ ├── MethodBaseRule.cs │ ├── PropertyFuzzyMatchRule.cs │ └── PropertyRule.cs ├── FinReconcile.Infra ├── FinReconcile.Infra.csproj ├── MarkOffReader │ ├── CSVMarkOffFileParser.cs │ ├── IMarkOffFileParser.cs │ ├── ParserContext.cs │ └── ParserResult.cs ├── Properties │ └── AssemblyInfo.cs └── Providers │ ├── IMarkOffFileProvider.cs │ ├── MarkOffFileProvider.cs │ └── SessionIdGenerator.cs └── FinReconcile.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/README.md -------------------------------------------------------------------------------- /RuleEngineSample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/RuleEngineSample.txt -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/App.config -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/CSVParser.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/CSVParser.feature -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/CSVParser.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/CSVParser.feature.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/CSVParserSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/CSVParserSteps.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/FinConcile.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/FinConcile.Tests.csproj -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/Properties/Resources.resx -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/ReconcileEngine.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/ReconcileEngine.feature -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/ReconcileEngine.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/ReconcileEngine.feature.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/ReconcileEngineSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/ReconcileEngineSteps.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/Resources/BankMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/Resources/BankMarkoffFile20140113.csv -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/Resources/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/Resources/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/Rules.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/Rules.feature -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/Rules.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/Rules.feature.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/RulesEvaluator.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/RulesEvaluator.feature -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/RulesEvaluator.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/RulesEvaluator.feature.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/RulesEvaluatorSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/RulesEvaluatorSteps.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/RulesSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/RulesSteps.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/Steps/TransactionTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/Steps/TransactionTestData.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/TestUtils/SpecflowExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/TestUtils/SpecflowExtensions.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/TestUtils/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/TestUtils/Utilities.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/TransactionCompare.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/TransactionCompare.feature -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/TransactionCompare.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/TransactionCompare.feature.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/TransactionCompareSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/TransactionCompareSteps.cs -------------------------------------------------------------------------------- /Tests/FinConcile.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/Tests/FinConcile.Tests/packages.config -------------------------------------------------------------------------------- /libs/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/libs/CsvHelper.dll -------------------------------------------------------------------------------- /src/FinConcile.Web/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/App_Start/DIConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/App_Start/DIConfig.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/App_Start/RulesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/App_Start/RulesConfig.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/ApplicationInsights.config -------------------------------------------------------------------------------- /src/FinConcile.Web/Content/Onion Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Content/Onion Architecture.png -------------------------------------------------------------------------------- /src/FinConcile.Web/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Content/Site.css -------------------------------------------------------------------------------- /src/FinConcile.Web/Content/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Content/paper.css -------------------------------------------------------------------------------- /src/FinConcile.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/Controllers/RulesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Controllers/RulesController.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/Controllers/TransactionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Controllers/TransactionController.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/FinReconcile.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/FinReconcile.Web.csproj -------------------------------------------------------------------------------- /src/FinConcile.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Global.asax -------------------------------------------------------------------------------- /src/FinConcile.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Global.asax.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/Models/CompareModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Models/CompareModel.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/Models/CompareResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Models/CompareResult.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FinConcile.Web/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Scripts/bootstrap.js -------------------------------------------------------------------------------- /src/FinConcile.Web/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/FinConcile.Web/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /src/FinConcile.Web/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /src/FinConcile.Web/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /src/FinConcile.Web/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /src/FinConcile.Web/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /src/FinConcile.Web/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Scripts/respond.js -------------------------------------------------------------------------------- /src/FinConcile.Web/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Scripts/respond.min.js -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/0819ec5f-00e2-4cee-9c3f-5329b4927a82_ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/0819ec5f-00e2-4cee-9c3f-5329b4927a82_ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/0UNDZ/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/0UNDZ/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/0UNDZ/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/0UNDZ/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/0f24d9e4-9332-4ab9-9d48-6e6b0d2c51d1_ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/0f24d9e4-9332-4ab9-9d48-6e6b0d2c51d1_ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/1CfaJ/ClientMarkoffFile20140113 - Copy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/1CfaJ/ClientMarkoffFile20140113 - Copy.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/1CfaJ/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/1CfaJ/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/269040e2-217e-41c6-a94c-f29b675b3442_ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/269040e2-217e-41c6-a94c-f29b675b3442_ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/296Qo/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/296Qo/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/296Qo/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/296Qo/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/3101f7d2-5382-4b58-929f-da537b089e9a_ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/3101f7d2-5382-4b58-929f-da537b089e9a_ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/37df4d5a-e97e-43b4-b7f6-72c9a191a027_TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/37df4d5a-e97e-43b4-b7f6-72c9a191a027_TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/6HeDu/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/6HeDu/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/6HeDu/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/6HeDu/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/711a77d5-4ca8-4d53-b35d-c04949a5ccc8_TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/711a77d5-4ca8-4d53-b35d-c04949a5ccc8_TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/9825f407-4287-4db7-b4c3-1720a78482cd_TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/9825f407-4287-4db7-b4c3-1720a78482cd_TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/99a6076a-848f-496b-8efe-c58c6a5889b8_ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/99a6076a-848f-496b-8efe-c58c6a5889b8_ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/CFjOw/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/CFjOw/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/CFjOw/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/CFjOw/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/DRO4e/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/DRO4e/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/DRO4e/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/DRO4e/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/ESQm1/ClientMarkoffFile20140113 - Copy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/ESQm1/ClientMarkoffFile20140113 - Copy.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/ESQm1/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/ESQm1/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/HQW4Z/ClientMarkoffFile20140113 - Copy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/HQW4Z/ClientMarkoffFile20140113 - Copy.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/HQW4Z/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/HQW4Z/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/MXvV5/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/MXvV5/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/MXvV5/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/MXvV5/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/TW4YP/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/TW4YP/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/TW4YP/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/TW4YP/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/VpPoT/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/VpPoT/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/VpPoT/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/VpPoT/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/ZUJe6/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/ZUJe6/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/ZUJe6/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/ZUJe6/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/c90b451a-3e09-473a-b369-b5c81cfed1b4_TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/c90b451a-3e09-473a-b369-b5c81cfed1b4_TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/c9984e40-58f7-44b5-bd40-07985e03b0e6_TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/c9984e40-58f7-44b5-bd40-07985e03b0e6_TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/ca9YF/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/ca9YF/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/ca9YF/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/ca9YF/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/ddrPA/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/ddrPA/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/ddrPA/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/ddrPA/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/e338a16e-df45-4edd-97a5-7f33308d85b3_TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/e338a16e-df45-4edd-97a5-7f33308d85b3_TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/f27d71aa-928b-4f59-b197-8aeb1b0338d7_ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/f27d71aa-928b-4f59-b197-8aeb1b0338d7_ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/fh6Fl/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/fh6Fl/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/fh6Fl/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/fh6Fl/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/hlNhm/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/hlNhm/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/hlNhm/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/hlNhm/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/hoGq2/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/hoGq2/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/hoGq2/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/hoGq2/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/hwYvL/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/hwYvL/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/hwYvL/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/hwYvL/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/oO8aS/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/oO8aS/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/pWioV/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/pWioV/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/pWioV/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/pWioV/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/tpADK/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/tpADK/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/tpADK/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/tpADK/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/xoRYy/ClientMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/xoRYy/ClientMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Uploads/xoRYy/TutukaMarkoffFile20140113.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Uploads/xoRYy/TutukaMarkoffFile20140113.csv -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Rules/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Rules/Index.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Transaction/Compare.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Transaction/Compare.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Transaction/CompareResult.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Transaction/CompareResult.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Transaction/CompareResultPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Transaction/CompareResultPartial.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Transaction/UnmatchedDetailedReportPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Transaction/UnmatchedDetailedReportPartial.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Transaction/UnmatchedReport.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Transaction/UnmatchedReport.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Transaction/UnmatchedReportPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Transaction/UnmatchedReportPartial.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/Web.config -------------------------------------------------------------------------------- /src/FinConcile.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/FinConcile.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Web.Debug.config -------------------------------------------------------------------------------- /src/FinConcile.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Web.Release.config -------------------------------------------------------------------------------- /src/FinConcile.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/Web.config -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/CSVParser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/CSVParser.html -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/ReconcileEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/ReconcileEngine.html -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/Rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/Rules.html -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/RulesEvaluator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/RulesEvaluator.html -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/TransactionCompare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/TransactionCompare.html -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/font-awesome.css -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/global.css -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/master.css -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/print.css: -------------------------------------------------------------------------------- 1 | #FolderNav, #TopNav { display: none !important; } 2 | -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/reset.css -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/structure.css -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/css/styles.css -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/img/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/img/failure.png -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/img/inconclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/img/inconclusive.png -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/img/link.png -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/img/success.png -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/index.html -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/Chart.StackedBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/Chart.StackedBar.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/Chart.min.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/Markdown.Converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/Markdown.Converter.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/Markdown.Extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/Markdown.Extra.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/featureSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/featureSearch.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/featuresModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/featuresModel.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/heirarchyBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/heirarchyBuilder.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/html5.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/jquery.highlight-4.closure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/jquery.highlight-4.closure.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/jquery.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/knockout-3.4.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/knockout-3.4.0.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/knockout.mapping-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/knockout.mapping-latest.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/logger.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/picklesOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/picklesOverview.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/scripts.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/stringFormatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/stringFormatting.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/typeaheadList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/typeaheadList.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/js/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/js/underscore-min.js -------------------------------------------------------------------------------- /src/FinConcile.Web/docs/pickledFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/docs/pickledFeatures.js -------------------------------------------------------------------------------- /src/FinConcile.Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/favicon.ico -------------------------------------------------------------------------------- /src/FinConcile.Web/finreconcile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/finreconcile.html -------------------------------------------------------------------------------- /src/FinConcile.Web/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/FinConcile.Web/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/FinConcile.Web/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/FinConcile.Web/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/FinConcile.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinConcile.Web/packages.config -------------------------------------------------------------------------------- /src/FinReconcile.Core/Domain/Interfaces/IReconcileEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/Domain/Interfaces/IReconcileEngine.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/Domain/Interfaces/IReconcileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/Domain/Interfaces/IReconcileResult.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/Domain/ReconcileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/Domain/ReconcileResult.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/Domain/ReconciledItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/Domain/ReconciledItem.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/Domain/ReconciledMatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/Domain/ReconciledMatchType.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/Domain/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/Domain/Transaction.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/Domain/TransactionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/Domain/TransactionSet.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/Domain/TransactionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/Domain/TransactionType.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/FinReconcile.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/FinReconcile.Core.csproj -------------------------------------------------------------------------------- /src/FinReconcile.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/ReconcileEngine/IReconcileEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/ReconcileEngine/IReconcileEngine.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/ReconcileEngine/ReconcileEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/ReconcileEngine/ReconcileEngine.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/RuleEngine/IRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/RuleEngine/IRule.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/RuleEngine/RuleEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/RuleEngine/RuleEngine.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/RuleEngine/RuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/RuleEngine/RuleSet.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/RuleEngine/RuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/RuleEngine/RuleType.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/RuleEngine/Rules/DateRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/RuleEngine/Rules/DateRule.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/RuleEngine/Rules/MethodBaseRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/RuleEngine/Rules/MethodBaseRule.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/RuleEngine/Rules/PropertyFuzzyMatchRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/RuleEngine/Rules/PropertyFuzzyMatchRule.cs -------------------------------------------------------------------------------- /src/FinReconcile.Core/RuleEngine/Rules/PropertyRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Core/RuleEngine/Rules/PropertyRule.cs -------------------------------------------------------------------------------- /src/FinReconcile.Infra/FinReconcile.Infra.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Infra/FinReconcile.Infra.csproj -------------------------------------------------------------------------------- /src/FinReconcile.Infra/MarkOffReader/CSVMarkOffFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Infra/MarkOffReader/CSVMarkOffFileParser.cs -------------------------------------------------------------------------------- /src/FinReconcile.Infra/MarkOffReader/IMarkOffFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Infra/MarkOffReader/IMarkOffFileParser.cs -------------------------------------------------------------------------------- /src/FinReconcile.Infra/MarkOffReader/ParserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Infra/MarkOffReader/ParserContext.cs -------------------------------------------------------------------------------- /src/FinReconcile.Infra/MarkOffReader/ParserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Infra/MarkOffReader/ParserResult.cs -------------------------------------------------------------------------------- /src/FinReconcile.Infra/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Infra/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FinReconcile.Infra/Providers/IMarkOffFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Infra/Providers/IMarkOffFileProvider.cs -------------------------------------------------------------------------------- /src/FinReconcile.Infra/Providers/MarkOffFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Infra/Providers/MarkOffFileProvider.cs -------------------------------------------------------------------------------- /src/FinReconcile.Infra/Providers/SessionIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.Infra/Providers/SessionIdGenerator.cs -------------------------------------------------------------------------------- /src/FinReconcile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohithkrajan/FinReconcile/HEAD/src/FinReconcile.sln --------------------------------------------------------------------------------