├── .cr └── personal │ └── FavoritesList │ └── List.xml ├── .env ├── .gitattributes ├── .gitignore ├── .vs └── SimpleInvoiceManagementSoftware │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ ├── config │ └── applicationhost.config │ └── v16 │ └── .suo ├── Entity ├── Company.cs ├── Customer.cs ├── Entity.csproj ├── Invoice.cs ├── InvoiceLine.cs ├── Product.cs ├── Tax.cs ├── bin │ └── Debug │ │ ├── netstandard2.0 │ │ ├── Entity.deps.json │ │ ├── Entity.dll │ │ └── Entity.pdb │ │ └── netstandard2.1 │ │ ├── Entity.deps.json │ │ ├── Entity.dll │ │ └── Entity.pdb └── obj │ ├── Debug │ ├── netstandard2.0 │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ ├── Entity.AssemblyInfo.cs │ │ ├── Entity.AssemblyInfoInputs.cache │ │ ├── Entity.assets.cache │ │ ├── Entity.csproj.CoreCompileInputs.cache │ │ ├── Entity.csproj.FileListAbsolute.txt │ │ ├── Entity.csprojAssemblyReference.cache │ │ ├── Entity.dll │ │ └── Entity.pdb │ └── netstandard2.1 │ │ ├── .NETStandard,Version=v2.1.AssemblyAttributes.cs │ │ ├── Entity.AssemblyInfo.cs │ │ ├── Entity.AssemblyInfoInputs.cache │ │ ├── Entity.assets.cache │ │ ├── Entity.csproj.CoreCompileInputs.cache │ │ ├── Entity.csproj.FileListAbsolute.txt │ │ ├── Entity.dll │ │ └── Entity.pdb │ ├── Entity.csproj.nuget.dgspec.json │ ├── Entity.csproj.nuget.g.props │ ├── Entity.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── LICENSE ├── RDLC ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── Entity.Invoice.datasource │ │ └── Entity.InvoiceLine.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RDLC.csproj ├── bin │ └── Debug │ │ ├── Entity.dll │ │ ├── Entity.pdb │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── RDLC.exe │ │ ├── RDLC.exe.config │ │ ├── RDLC.pdb │ │ ├── System.AppContext.dll │ │ ├── System.Collections.Concurrent.dll │ │ ├── System.Collections.NonGeneric.dll │ │ ├── System.Collections.Specialized.dll │ │ ├── System.Collections.dll │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ ├── System.ComponentModel.Primitives.dll │ │ ├── System.ComponentModel.TypeConverter.dll │ │ ├── System.ComponentModel.dll │ │ ├── System.Console.dll │ │ ├── System.Data.Common.dll │ │ ├── System.Diagnostics.Contracts.dll │ │ ├── System.Diagnostics.Debug.dll │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ ├── System.Diagnostics.Process.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ ├── System.Diagnostics.Tools.dll │ │ ├── System.Diagnostics.TraceSource.dll │ │ ├── System.Diagnostics.Tracing.dll │ │ ├── System.Drawing.Primitives.dll │ │ ├── System.Dynamic.Runtime.dll │ │ ├── System.Globalization.Calendars.dll │ │ ├── System.Globalization.Extensions.dll │ │ ├── System.Globalization.dll │ │ ├── System.IO.Compression.ZipFile.dll │ │ ├── System.IO.Compression.dll │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.Watcher.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.IO.IsolatedStorage.dll │ │ ├── System.IO.MemoryMappedFiles.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ ├── System.IO.dll │ │ ├── System.Linq.Expressions.dll │ │ ├── System.Linq.Parallel.dll │ │ ├── System.Linq.Queryable.dll │ │ ├── System.Linq.dll │ │ ├── System.Net.Http.dll │ │ ├── System.Net.NameResolution.dll │ │ ├── System.Net.NetworkInformation.dll │ │ ├── System.Net.Ping.dll │ │ ├── System.Net.Primitives.dll │ │ ├── System.Net.Requests.dll │ │ ├── System.Net.Security.dll │ │ ├── System.Net.Sockets.dll │ │ ├── System.Net.WebHeaderCollection.dll │ │ ├── System.Net.WebSockets.Client.dll │ │ ├── System.Net.WebSockets.dll │ │ ├── System.ObjectModel.dll │ │ ├── System.Reflection.Extensions.dll │ │ ├── System.Reflection.Primitives.dll │ │ ├── System.Reflection.dll │ │ ├── System.Resources.Reader.dll │ │ ├── System.Resources.ResourceManager.dll │ │ ├── System.Resources.Writer.dll │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ ├── System.Runtime.Extensions.dll │ │ ├── System.Runtime.Handles.dll │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ ├── System.Runtime.InteropServices.dll │ │ ├── System.Runtime.Numerics.dll │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ ├── System.Runtime.Serialization.Json.dll │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ ├── System.Runtime.Serialization.Xml.dll │ │ ├── System.Runtime.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Csp.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Principal.dll │ │ ├── System.Security.SecureString.dll │ │ ├── System.Text.Encoding.Extensions.dll │ │ ├── System.Text.Encoding.dll │ │ ├── System.Text.RegularExpressions.dll │ │ ├── System.Threading.Overlapped.dll │ │ ├── System.Threading.Tasks.Parallel.dll │ │ ├── System.Threading.Tasks.dll │ │ ├── System.Threading.Thread.dll │ │ ├── System.Threading.ThreadPool.dll │ │ ├── System.Threading.Timer.dll │ │ ├── System.Threading.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.XDocument.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── System.Xml.XmlSerializer.dll │ │ └── netstandard.dll ├── obj │ └── Debug │ │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── RDLC.Properties.Resources.resources │ │ ├── RDLC.csproj.CopyComplete │ │ ├── RDLC.csproj.CoreCompileInputs.cache │ │ ├── RDLC.csproj.FileListAbsolute.txt │ │ ├── RDLC.csproj.GenerateResource.cache │ │ ├── RDLC.csprojAssemblyReference.cache │ │ ├── RDLC.exe │ │ ├── RDLC.exe.config │ │ ├── RDLC.pdb │ │ ├── RdlCompile.cache │ │ └── RdlCompile.compiled └── reports │ └── Invoice.rdlc ├── README.md ├── SimpleInvoiceManagementSoftware.sln ├── meta ├── app.json ├── data │ └── SimpleInvoice.json ├── layouts │ ├── login.json │ └── main.json └── pages │ ├── add-application-role.json │ ├── add-application-user.json │ ├── add-company.json │ ├── add-customer.json │ ├── add-invoice-line.json │ ├── add-invoice.json │ ├── add-product.json │ ├── add-tax.json │ ├── application-roles.json │ ├── application-users.json │ ├── companies.json │ ├── customers.json │ ├── edit-application-user.json │ ├── edit-company.json │ ├── edit-customer.json │ ├── edit-invoice-line.json │ ├── edit-invoice.json │ ├── edit-product.json │ ├── edit-tax.json │ ├── invoice-lines.json │ ├── invoices.json │ ├── login.json │ ├── products.json │ ├── profile.json │ ├── register-application-user.json │ ├── taxes.json │ └── unauthorized.json └── server ├── App.razor ├── Authentication └── ApplicationPrincipalFactory.cs ├── Controllers ├── AccountController.cs ├── ExportController.cs ├── ExportSimpleInvoiceController.Custom.cs ├── ExportSimpleInvoiceController.cs ├── ReportController.cs └── UploadController.cs ├── Data ├── ApplicationIdentityDbContext.cs ├── Migrations │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ ├── 00000000000000_CreateIdentitySchema.cs │ └── IdentityModelSnapshot.cs └── SimpleInvoiceContext.cs ├── DataCustom ├── CustomContext.cs └── Migrations │ ├── 20210426090845_ApplicationDBCreation.Designer.cs │ ├── 20210426090845_ApplicationDBCreation.cs │ └── CustomContextModelSnapshot.cs ├── Dockerfile ├── Models ├── ApplicationUser.cs └── SimpleInvoice │ ├── Company.cs │ ├── Customer.cs │ ├── Invoice.Custom.cs │ ├── Invoice.cs │ ├── InvoiceLine.Custom.cs │ ├── InvoiceLine.cs │ ├── Product.cs │ └── Tax.cs ├── Pages ├── AddApplicationRole.razor ├── AddApplicationRole.razor.cs ├── AddApplicationRole.razor.designer.cs ├── AddApplicationUser.razor ├── AddApplicationUser.razor.cs ├── AddApplicationUser.razor.designer.cs ├── AddCompany.razor ├── AddCompany.razor.cs ├── AddCompany.razor.designer.cs ├── AddCustomer.razor ├── AddCustomer.razor.cs ├── AddCustomer.razor.designer.cs ├── AddInvoice.razor ├── AddInvoice.razor.cs ├── AddInvoice.razor.designer.cs ├── AddInvoiceLine.razor ├── AddInvoiceLine.razor.cs ├── AddInvoiceLine.razor.designer.cs ├── AddProduct.razor ├── AddProduct.razor.cs ├── AddProduct.razor.designer.cs ├── AddTax.razor ├── AddTax.razor.cs ├── AddTax.razor.designer.cs ├── ApplicationRoles.razor ├── ApplicationRoles.razor.cs ├── ApplicationRoles.razor.designer.cs ├── ApplicationUsers.razor ├── ApplicationUsers.razor.cs ├── ApplicationUsers.razor.designer.cs ├── Companies.razor ├── Companies.razor.cs ├── Companies.razor.designer.cs ├── Customers.razor ├── Customers.razor.cs ├── Customers.razor.designer.cs ├── EditApplicationUser.razor ├── EditApplicationUser.razor.cs ├── EditApplicationUser.razor.designer.cs ├── EditCompany.razor ├── EditCompany.razor.cs ├── EditCompany.razor.designer.cs ├── EditCustomer.razor ├── EditCustomer.razor.cs ├── EditCustomer.razor.designer.cs ├── EditInvoice.razor ├── EditInvoice.razor.cs ├── EditInvoice.razor.designer.cs ├── EditInvoiceLine.razor ├── EditInvoiceLine.razor.cs ├── EditInvoiceLine.razor.designer.cs ├── EditProduct.razor ├── EditProduct.razor.cs ├── EditProduct.razor.designer.cs ├── EditTax.razor ├── EditTax.razor.cs ├── EditTax.razor.designer.cs ├── InvoiceLines.razor ├── InvoiceLines.razor.cs ├── InvoiceLines.razor.designer.cs ├── Invoices.razor ├── Invoices.razor.cs ├── Invoices.razor.designer.cs ├── Login.razor ├── Login.razor.cs ├── Login.razor.designer.cs ├── Products.razor ├── Products.razor.cs ├── Products.razor.designer.cs ├── Profile.razor ├── Profile.razor.cs ├── Profile.razor.designer.cs ├── RegisterApplicationUser.razor ├── RegisterApplicationUser.razor.cs ├── RegisterApplicationUser.razor.designer.cs ├── Taxes.razor ├── Taxes.razor.cs ├── Taxes.razor.designer.cs ├── Unauthorized.razor ├── Unauthorized.razor.cs ├── Unauthorized.razor.designer.cs ├── _Host.cshtml └── _Imports.razor ├── Program.cs ├── Properties ├── DataSources │ └── Entity.Invoice.datasource └── launchSettings.json ├── Services ├── GlobalsService.cs ├── SecurityService.cs ├── SimpleInvoiceService.Custom.cs └── SimpleInvoiceService.cs ├── Shared ├── LoginLayout.razor ├── LoginLayout.razor.cs ├── LoginLayout.razor.designer.cs ├── MainLayout.razor ├── MainLayout.razor.cs ├── MainLayout.razor.designer.cs └── RedirectToLogin.razor ├── SimpleInvoiceManagementSoftware.csproj ├── Startup.Custom.cs ├── Startup.cs ├── _Imports.razor ├── appsettings.json ├── bin └── Debug │ └── net5.0 │ ├── AspNetCore.Reporting.dll │ ├── AspNetCore.ReportingServices.dll │ ├── DocumentFormat.OpenXml.dll │ ├── Entity.dll │ ├── Entity.pdb │ ├── Humanizer.dll │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Design.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.Identity.Core.dll │ ├── Microsoft.Extensions.Identity.Stores.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Newtonsoft.Json.dll │ ├── Radzen.Blazor.dll │ ├── SimpleInvoiceManagementSoftware.StaticWebAssets.xml │ ├── SimpleInvoiceManagementSoftware.Views.dll │ ├── SimpleInvoiceManagementSoftware.Views.pdb │ ├── SimpleInvoiceManagementSoftware.deps.json │ ├── SimpleInvoiceManagementSoftware.dll │ ├── SimpleInvoiceManagementSoftware.exe │ ├── SimpleInvoiceManagementSoftware.pdb │ ├── SimpleInvoiceManagementSoftware.runtimeconfig.dev.json │ ├── SimpleInvoiceManagementSoftware.runtimeconfig.json │ ├── System.CodeDom.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Data.SqlClient.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.IO.Packaging.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Linq.Dynamic.Core.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── System.ServiceModel.Http.dll │ ├── System.ServiceModel.Primitives.dll │ ├── System.ServiceModel.dll │ ├── appsettings.json │ ├── ref │ └── SimpleInvoiceManagementSoftware.dll │ ├── runtimes │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp2.1 │ │ │ └── System.Data.SqlClient.dll │ │ │ ├── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ └── netstandard2.0 │ │ │ └── System.Private.ServiceModel.dll │ ├── win-arm │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ ├── win-arm64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ └── sni.dll │ ├── win-x64 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ └── sni.dll │ ├── win-x86 │ │ └── native │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ └── sni.dll │ └── win │ │ └── lib │ │ ├── netcoreapp2.1 │ │ └── System.Data.SqlClient.dll │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ ├── System.Private.ServiceModel.dll │ │ ├── System.Runtime.Caching.dll │ │ └── System.Security.Cryptography.ProtectedData.dll │ └── wwwroot │ └── reports │ └── Invoice.rdlc ├── obj ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── Razor │ │ ├── App.razor.g.cs │ │ ├── Pages │ │ │ ├── AddApplicationRole.razor.g.cs │ │ │ ├── AddApplicationUser.razor.g.cs │ │ │ ├── AddCompany.razor.g.cs │ │ │ ├── AddCustomer.razor.g.cs │ │ │ ├── AddInvoice.razor.g.cs │ │ │ ├── AddInvoiceLine.razor.g.cs │ │ │ ├── AddProduct.razor.g.cs │ │ │ ├── AddTax.razor.g.cs │ │ │ ├── ApplicationRoles.razor.g.cs │ │ │ ├── ApplicationUsers.razor.g.cs │ │ │ ├── Companies.razor.g.cs │ │ │ ├── Customers.razor.g.cs │ │ │ ├── EditApplicationUser.razor.g.cs │ │ │ ├── EditCompany.razor.g.cs │ │ │ ├── EditCustomer.razor.g.cs │ │ │ ├── EditInvoice.razor.g.cs │ │ │ ├── EditInvoiceLine.razor.g.cs │ │ │ ├── EditProduct.razor.g.cs │ │ │ ├── EditTax.razor.g.cs │ │ │ ├── InvoiceLines.razor.g.cs │ │ │ ├── Invoices.razor.g.cs │ │ │ ├── Login.razor.g.cs │ │ │ ├── Products.razor.g.cs │ │ │ ├── Profile.razor.g.cs │ │ │ ├── RegisterApplicationUser.razor.g.cs │ │ │ ├── Taxes.razor.g.cs │ │ │ ├── Unauthorized.razor.g.cs │ │ │ ├── _Host.cshtml.g.cs │ │ │ └── _Imports.razor.g.cs │ │ ├── Shared │ │ │ ├── LoginLayout.razor.g.cs │ │ │ ├── MainLayout.razor.g.cs │ │ │ └── RedirectToLogin.razor.g.cs │ │ └── _Imports.razor.g.cs │ │ ├── RazorDeclaration │ │ ├── App.razor.g.cs │ │ ├── Pages │ │ │ ├── AddApplicationRole.razor.g.cs │ │ │ ├── AddApplicationUser.razor.g.cs │ │ │ ├── AddCompany.razor.g.cs │ │ │ ├── AddCustomer.razor.g.cs │ │ │ ├── AddInvoice.razor.g.cs │ │ │ ├── AddInvoiceLine.razor.g.cs │ │ │ ├── AddProduct.razor.g.cs │ │ │ ├── AddTax.razor.g.cs │ │ │ ├── ApplicationRoles.razor.g.cs │ │ │ ├── ApplicationUsers.razor.g.cs │ │ │ ├── Companies.razor.g.cs │ │ │ ├── Customers.razor.g.cs │ │ │ ├── EditApplicationUser.razor.g.cs │ │ │ ├── EditCompany.razor.g.cs │ │ │ ├── EditCustomer.razor.g.cs │ │ │ ├── EditInvoice.razor.g.cs │ │ │ ├── EditInvoiceLine.razor.g.cs │ │ │ ├── EditProduct.razor.g.cs │ │ │ ├── EditTax.razor.g.cs │ │ │ ├── InvoiceLines.razor.g.cs │ │ │ ├── Invoices.razor.g.cs │ │ │ ├── Login.razor.g.cs │ │ │ ├── Products.razor.g.cs │ │ │ ├── Profile.razor.g.cs │ │ │ ├── RegisterApplicationUser.razor.g.cs │ │ │ ├── Taxes.razor.g.cs │ │ │ ├── Unauthorized.razor.g.cs │ │ │ └── _Imports.razor.g.cs │ │ ├── Shared │ │ │ ├── LoginLayout.razor.g.cs │ │ │ ├── MainLayout.razor.g.cs │ │ │ └── RedirectToLogin.razor.g.cs │ │ ├── SimpleInvoiceManagementSoftware.dll │ │ ├── SimpleInvoiceManagementSoftware.pdb │ │ └── _Imports.razor.g.cs │ │ ├── RdlCompile.cache │ │ ├── RdlCompile.compiled │ │ ├── SimpleInvoiceManagementSoftware.AssemblyInfo.cs │ │ ├── SimpleInvoiceManagementSoftware.AssemblyInfoInputs.cache │ │ ├── SimpleInvoiceManagementSoftware.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── SimpleInvoiceManagementSoftware.MvcApplicationPartsAssemblyInfo.cache │ │ ├── SimpleInvoiceManagementSoftware.RazorAssemblyInfo.cache │ │ ├── SimpleInvoiceManagementSoftware.RazorAssemblyInfo.cs │ │ ├── SimpleInvoiceManagementSoftware.RazorComponent.input.cache │ │ ├── SimpleInvoiceManagementSoftware.RazorComponent.output.cache │ │ ├── SimpleInvoiceManagementSoftware.RazorCoreGenerate.cache │ │ ├── SimpleInvoiceManagementSoftware.RazorTargetAssemblyInfo.cache │ │ ├── SimpleInvoiceManagementSoftware.RazorTargetAssemblyInfo.cs │ │ ├── SimpleInvoiceManagementSoftware.TagHelpers.input.cache │ │ ├── SimpleInvoiceManagementSoftware.TagHelpers.output.cache │ │ ├── SimpleInvoiceManagementSoftware.Views.dll │ │ ├── SimpleInvoiceManagementSoftware.Views.pdb │ │ ├── SimpleInvoiceManagementSoftware.assets.cache │ │ ├── SimpleInvoiceManagementSoftware.csproj.CopyComplete │ │ ├── SimpleInvoiceManagementSoftware.csproj.CoreCompileInputs.cache │ │ ├── SimpleInvoiceManagementSoftware.csproj.FileListAbsolute.txt │ │ ├── SimpleInvoiceManagementSoftware.csprojAssemblyReference.cache │ │ ├── SimpleInvoiceManagementSoftware.dll │ │ ├── SimpleInvoiceManagementSoftware.genruntimeconfig.cache │ │ ├── SimpleInvoiceManagementSoftware.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── SimpleInvoiceManagementSoftware.dll │ │ └── staticwebassets │ │ ├── SimpleInvoiceManagementSoftware.StaticWebAssets.Manifest.cache │ │ └── SimpleInvoiceManagementSoftware.StaticWebAssets.xml ├── SimpleInvoiceManagementSoftware.csproj.nuget.dgspec.json ├── SimpleInvoiceManagementSoftware.csproj.nuget.g.props ├── SimpleInvoiceManagementSoftware.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache └── wwwroot ├── assets ├── css │ ├── dark.css │ ├── styles-generated.css │ └── styles.css └── fonts │ ├── MaterialIcons-Regular.woff │ ├── SourceSansPro-Black.woff │ ├── SourceSansPro-BlackIt.woff │ ├── SourceSansPro-Bold.woff │ ├── SourceSansPro-BoldIt.woff │ ├── SourceSansPro-ExtraLight.woff │ ├── SourceSansPro-ExtraLightIt.woff │ ├── SourceSansPro-It.woff │ ├── SourceSansPro-Light.woff │ ├── SourceSansPro-LightIt.woff │ ├── SourceSansPro-Regular.woff │ ├── SourceSansPro-Semibold.woff │ ├── SourceSansPro-SemiboldIt.woff │ ├── roboto-regular.woff │ ├── roboto-v15-latin-300.woff │ ├── roboto-v15-latin-700.woff │ └── roboto-v15-latin-regular.woff ├── favicon.ico ├── images ├── invoice1.png └── invoice2.png └── reports └── Invoice.rdlc /.cr/personal/FavoritesList/List.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/.cr/personal/FavoritesList/List.xml -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/SimpleInvoiceManagementSoftware/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/.vs/SimpleInvoiceManagementSoftware/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/SimpleInvoiceManagementSoftware/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/.vs/SimpleInvoiceManagementSoftware/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/SimpleInvoiceManagementSoftware/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/.vs/SimpleInvoiceManagementSoftware/v16/.suo -------------------------------------------------------------------------------- /Entity/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/Company.cs -------------------------------------------------------------------------------- /Entity/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/Customer.cs -------------------------------------------------------------------------------- /Entity/Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/Entity.csproj -------------------------------------------------------------------------------- /Entity/Invoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/Invoice.cs -------------------------------------------------------------------------------- /Entity/InvoiceLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/InvoiceLine.cs -------------------------------------------------------------------------------- /Entity/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/Product.cs -------------------------------------------------------------------------------- /Entity/Tax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/Tax.cs -------------------------------------------------------------------------------- /Entity/bin/Debug/netstandard2.0/Entity.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/bin/Debug/netstandard2.0/Entity.deps.json -------------------------------------------------------------------------------- /Entity/bin/Debug/netstandard2.0/Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/bin/Debug/netstandard2.0/Entity.dll -------------------------------------------------------------------------------- /Entity/bin/Debug/netstandard2.0/Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/bin/Debug/netstandard2.0/Entity.pdb -------------------------------------------------------------------------------- /Entity/bin/Debug/netstandard2.1/Entity.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/bin/Debug/netstandard2.1/Entity.deps.json -------------------------------------------------------------------------------- /Entity/bin/Debug/netstandard2.1/Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/bin/Debug/netstandard2.1/Entity.dll -------------------------------------------------------------------------------- /Entity/bin/Debug/netstandard2.1/Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/bin/Debug/netstandard2.1/Entity.pdb -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.0/Entity.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.0/Entity.AssemblyInfo.cs -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.0/Entity.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | dbccaf505fd6938eabf72096904de9108215bfa9 2 | -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.0/Entity.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.0/Entity.assets.cache -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.0/Entity.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 61f889f2c44870ad6e2ec365cd367bfa9d30242e 2 | -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.0/Entity.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.0/Entity.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.0/Entity.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.0/Entity.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.0/Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.0/Entity.dll -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.0/Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.0/Entity.pdb -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.1/Entity.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.1/Entity.AssemblyInfo.cs -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.1/Entity.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | dbccaf505fd6938eabf72096904de9108215bfa9 2 | -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.1/Entity.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.1/Entity.assets.cache -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.1/Entity.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8a8d3136dfe16968759075eada9347d963575c3f 2 | -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.1/Entity.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.1/Entity.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.1/Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.1/Entity.dll -------------------------------------------------------------------------------- /Entity/obj/Debug/netstandard2.1/Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Debug/netstandard2.1/Entity.pdb -------------------------------------------------------------------------------- /Entity/obj/Entity.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Entity.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /Entity/obj/Entity.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Entity.csproj.nuget.g.props -------------------------------------------------------------------------------- /Entity/obj/Entity.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/Entity.csproj.nuget.g.targets -------------------------------------------------------------------------------- /Entity/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/project.assets.json -------------------------------------------------------------------------------- /Entity/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/Entity/obj/project.nuget.cache -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/LICENSE -------------------------------------------------------------------------------- /RDLC/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/App.config -------------------------------------------------------------------------------- /RDLC/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Form1.Designer.cs -------------------------------------------------------------------------------- /RDLC/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Form1.cs -------------------------------------------------------------------------------- /RDLC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Program.cs -------------------------------------------------------------------------------- /RDLC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RDLC/Properties/DataSources/Entity.Invoice.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Properties/DataSources/Entity.Invoice.datasource -------------------------------------------------------------------------------- /RDLC/Properties/DataSources/Entity.InvoiceLine.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Properties/DataSources/Entity.InvoiceLine.datasource -------------------------------------------------------------------------------- /RDLC/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RDLC/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Properties/Resources.resx -------------------------------------------------------------------------------- /RDLC/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RDLC/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/Properties/Settings.settings -------------------------------------------------------------------------------- /RDLC/RDLC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/RDLC.csproj -------------------------------------------------------------------------------- /RDLC/bin/Debug/Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/Entity.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/Entity.pdb -------------------------------------------------------------------------------- /RDLC/bin/Debug/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/RDLC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/RDLC.exe -------------------------------------------------------------------------------- /RDLC/bin/Debug/RDLC.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/RDLC.exe.config -------------------------------------------------------------------------------- /RDLC/bin/Debug/RDLC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/RDLC.pdb -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.AppContext.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Collections.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Collections.Concurrent.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Collections.NonGeneric.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Collections.NonGeneric.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Collections.Specialized.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Collections.Specialized.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Collections.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Collections.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.ComponentModel.EventBasedAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.ComponentModel.EventBasedAsync.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.ComponentModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.ComponentModel.Primitives.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.ComponentModel.TypeConverter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.ComponentModel.TypeConverter.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.ComponentModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.ComponentModel.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Console.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Data.Common.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Diagnostics.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Diagnostics.Contracts.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Diagnostics.Debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Diagnostics.Debug.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Diagnostics.Process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Diagnostics.Process.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Diagnostics.TextWriterTraceListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Diagnostics.TextWriterTraceListener.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Diagnostics.Tools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Diagnostics.Tools.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Diagnostics.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Diagnostics.Tracing.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Drawing.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Drawing.Primitives.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Dynamic.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Dynamic.Runtime.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Globalization.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Globalization.Extensions.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Globalization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Globalization.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.Compression.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.FileSystem.DriveInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.FileSystem.DriveInfo.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.FileSystem.Watcher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.FileSystem.Watcher.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.IsolatedStorage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.IsolatedStorage.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.MemoryMappedFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.MemoryMappedFiles.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.Pipes.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.UnmanagedMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.UnmanagedMemoryStream.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.IO.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Linq.Expressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Linq.Expressions.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Linq.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Linq.Parallel.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Linq.Queryable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Linq.Queryable.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Linq.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.Http.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.NameResolution.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.NameResolution.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.NetworkInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.NetworkInformation.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.Ping.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.Ping.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.Primitives.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.Requests.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.Requests.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.Security.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.Sockets.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.WebHeaderCollection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.WebHeaderCollection.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.WebSockets.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.WebSockets.Client.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Net.WebSockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Net.WebSockets.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.ObjectModel.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Reflection.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Reflection.Extensions.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Reflection.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Reflection.Primitives.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Reflection.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Resources.Reader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Resources.Reader.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Resources.ResourceManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Resources.ResourceManager.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Resources.Writer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Resources.Writer.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.CompilerServices.VisualC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.CompilerServices.VisualC.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.Extensions.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.Handles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.Handles.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.InteropServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.InteropServices.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.Numerics.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.Serialization.Formatters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.Serialization.Formatters.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.Serialization.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.Serialization.Json.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.Serialization.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.Serialization.Primitives.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.Serialization.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.Serialization.Xml.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Runtime.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Security.Claims.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Security.Cryptography.Csp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Security.Cryptography.Csp.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Security.Principal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Security.Principal.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Security.SecureString.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Security.SecureString.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Text.Encoding.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Text.Encoding.Extensions.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Text.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Text.Encoding.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Text.RegularExpressions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Text.RegularExpressions.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Threading.Overlapped.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Threading.Overlapped.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Threading.Tasks.Parallel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Threading.Tasks.Parallel.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Threading.Thread.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Threading.ThreadPool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Threading.ThreadPool.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Threading.Timer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Threading.Timer.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Threading.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.ValueTuple.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Xml.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Xml.XDocument.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Xml.XPath.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/System.Xml.XmlSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/System.Xml.XmlSerializer.dll -------------------------------------------------------------------------------- /RDLC/bin/Debug/netstandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/bin/Debug/netstandard.dll -------------------------------------------------------------------------------- /RDLC/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /RDLC/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /RDLC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /RDLC/obj/Debug/RDLC.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/RDLC.Properties.Resources.resources -------------------------------------------------------------------------------- /RDLC/obj/Debug/RDLC.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RDLC/obj/Debug/RDLC.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7084ceb33c789e43fa12c1a83127992a5294c3ef 2 | -------------------------------------------------------------------------------- /RDLC/obj/Debug/RDLC.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/RDLC.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /RDLC/obj/Debug/RDLC.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/RDLC.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /RDLC/obj/Debug/RDLC.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/RDLC.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /RDLC/obj/Debug/RDLC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/RDLC.exe -------------------------------------------------------------------------------- /RDLC/obj/Debug/RDLC.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/RDLC.exe.config -------------------------------------------------------------------------------- /RDLC/obj/Debug/RDLC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/RDLC.pdb -------------------------------------------------------------------------------- /RDLC/obj/Debug/RdlCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/obj/Debug/RdlCompile.cache -------------------------------------------------------------------------------- /RDLC/obj/Debug/RdlCompile.compiled: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RDLC/reports/Invoice.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/RDLC/reports/Invoice.rdlc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/README.md -------------------------------------------------------------------------------- /SimpleInvoiceManagementSoftware.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/SimpleInvoiceManagementSoftware.sln -------------------------------------------------------------------------------- /meta/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/app.json -------------------------------------------------------------------------------- /meta/data/SimpleInvoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/data/SimpleInvoice.json -------------------------------------------------------------------------------- /meta/layouts/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/layouts/login.json -------------------------------------------------------------------------------- /meta/layouts/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/layouts/main.json -------------------------------------------------------------------------------- /meta/pages/add-application-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/add-application-role.json -------------------------------------------------------------------------------- /meta/pages/add-application-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/add-application-user.json -------------------------------------------------------------------------------- /meta/pages/add-company.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/add-company.json -------------------------------------------------------------------------------- /meta/pages/add-customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/add-customer.json -------------------------------------------------------------------------------- /meta/pages/add-invoice-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/add-invoice-line.json -------------------------------------------------------------------------------- /meta/pages/add-invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/add-invoice.json -------------------------------------------------------------------------------- /meta/pages/add-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/add-product.json -------------------------------------------------------------------------------- /meta/pages/add-tax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/add-tax.json -------------------------------------------------------------------------------- /meta/pages/application-roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/application-roles.json -------------------------------------------------------------------------------- /meta/pages/application-users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/application-users.json -------------------------------------------------------------------------------- /meta/pages/companies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/companies.json -------------------------------------------------------------------------------- /meta/pages/customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/customers.json -------------------------------------------------------------------------------- /meta/pages/edit-application-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/edit-application-user.json -------------------------------------------------------------------------------- /meta/pages/edit-company.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/edit-company.json -------------------------------------------------------------------------------- /meta/pages/edit-customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/edit-customer.json -------------------------------------------------------------------------------- /meta/pages/edit-invoice-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/edit-invoice-line.json -------------------------------------------------------------------------------- /meta/pages/edit-invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/edit-invoice.json -------------------------------------------------------------------------------- /meta/pages/edit-product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/edit-product.json -------------------------------------------------------------------------------- /meta/pages/edit-tax.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/edit-tax.json -------------------------------------------------------------------------------- /meta/pages/invoice-lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/invoice-lines.json -------------------------------------------------------------------------------- /meta/pages/invoices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/invoices.json -------------------------------------------------------------------------------- /meta/pages/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/login.json -------------------------------------------------------------------------------- /meta/pages/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/products.json -------------------------------------------------------------------------------- /meta/pages/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/profile.json -------------------------------------------------------------------------------- /meta/pages/register-application-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/register-application-user.json -------------------------------------------------------------------------------- /meta/pages/taxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/taxes.json -------------------------------------------------------------------------------- /meta/pages/unauthorized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/meta/pages/unauthorized.json -------------------------------------------------------------------------------- /server/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/App.razor -------------------------------------------------------------------------------- /server/Authentication/ApplicationPrincipalFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Authentication/ApplicationPrincipalFactory.cs -------------------------------------------------------------------------------- /server/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Controllers/AccountController.cs -------------------------------------------------------------------------------- /server/Controllers/ExportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Controllers/ExportController.cs -------------------------------------------------------------------------------- /server/Controllers/ExportSimpleInvoiceController.Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Controllers/ExportSimpleInvoiceController.Custom.cs -------------------------------------------------------------------------------- /server/Controllers/ExportSimpleInvoiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Controllers/ExportSimpleInvoiceController.cs -------------------------------------------------------------------------------- /server/Controllers/ReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Controllers/ReportController.cs -------------------------------------------------------------------------------- /server/Controllers/UploadController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Controllers/UploadController.cs -------------------------------------------------------------------------------- /server/Data/ApplicationIdentityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Data/ApplicationIdentityDbContext.cs -------------------------------------------------------------------------------- /server/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs -------------------------------------------------------------------------------- /server/Data/Migrations/00000000000000_CreateIdentitySchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Data/Migrations/00000000000000_CreateIdentitySchema.cs -------------------------------------------------------------------------------- /server/Data/Migrations/IdentityModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Data/Migrations/IdentityModelSnapshot.cs -------------------------------------------------------------------------------- /server/Data/SimpleInvoiceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Data/SimpleInvoiceContext.cs -------------------------------------------------------------------------------- /server/DataCustom/CustomContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/DataCustom/CustomContext.cs -------------------------------------------------------------------------------- /server/DataCustom/Migrations/20210426090845_ApplicationDBCreation.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/DataCustom/Migrations/20210426090845_ApplicationDBCreation.Designer.cs -------------------------------------------------------------------------------- /server/DataCustom/Migrations/20210426090845_ApplicationDBCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/DataCustom/Migrations/20210426090845_ApplicationDBCreation.cs -------------------------------------------------------------------------------- /server/DataCustom/Migrations/CustomContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/DataCustom/Migrations/CustomContextModelSnapshot.cs -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /server/Models/SimpleInvoice/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Models/SimpleInvoice/Company.cs -------------------------------------------------------------------------------- /server/Models/SimpleInvoice/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Models/SimpleInvoice/Customer.cs -------------------------------------------------------------------------------- /server/Models/SimpleInvoice/Invoice.Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Models/SimpleInvoice/Invoice.Custom.cs -------------------------------------------------------------------------------- /server/Models/SimpleInvoice/Invoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Models/SimpleInvoice/Invoice.cs -------------------------------------------------------------------------------- /server/Models/SimpleInvoice/InvoiceLine.Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Models/SimpleInvoice/InvoiceLine.Custom.cs -------------------------------------------------------------------------------- /server/Models/SimpleInvoice/InvoiceLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Models/SimpleInvoice/InvoiceLine.cs -------------------------------------------------------------------------------- /server/Models/SimpleInvoice/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Models/SimpleInvoice/Product.cs -------------------------------------------------------------------------------- /server/Models/SimpleInvoice/Tax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Models/SimpleInvoice/Tax.cs -------------------------------------------------------------------------------- /server/Pages/AddApplicationRole.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddApplicationRole.razor -------------------------------------------------------------------------------- /server/Pages/AddApplicationRole.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddApplicationRole.razor.cs -------------------------------------------------------------------------------- /server/Pages/AddApplicationRole.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddApplicationRole.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/AddApplicationUser.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddApplicationUser.razor -------------------------------------------------------------------------------- /server/Pages/AddApplicationUser.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddApplicationUser.razor.cs -------------------------------------------------------------------------------- /server/Pages/AddApplicationUser.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddApplicationUser.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/AddCompany.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddCompany.razor -------------------------------------------------------------------------------- /server/Pages/AddCompany.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddCompany.razor.cs -------------------------------------------------------------------------------- /server/Pages/AddCompany.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddCompany.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/AddCustomer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddCustomer.razor -------------------------------------------------------------------------------- /server/Pages/AddCustomer.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddCustomer.razor.cs -------------------------------------------------------------------------------- /server/Pages/AddCustomer.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddCustomer.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/AddInvoice.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddInvoice.razor -------------------------------------------------------------------------------- /server/Pages/AddInvoice.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddInvoice.razor.cs -------------------------------------------------------------------------------- /server/Pages/AddInvoice.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddInvoice.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/AddInvoiceLine.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddInvoiceLine.razor -------------------------------------------------------------------------------- /server/Pages/AddInvoiceLine.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddInvoiceLine.razor.cs -------------------------------------------------------------------------------- /server/Pages/AddInvoiceLine.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddInvoiceLine.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/AddProduct.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddProduct.razor -------------------------------------------------------------------------------- /server/Pages/AddProduct.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddProduct.razor.cs -------------------------------------------------------------------------------- /server/Pages/AddProduct.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddProduct.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/AddTax.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddTax.razor -------------------------------------------------------------------------------- /server/Pages/AddTax.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddTax.razor.cs -------------------------------------------------------------------------------- /server/Pages/AddTax.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/AddTax.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/ApplicationRoles.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/ApplicationRoles.razor -------------------------------------------------------------------------------- /server/Pages/ApplicationRoles.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/ApplicationRoles.razor.cs -------------------------------------------------------------------------------- /server/Pages/ApplicationRoles.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/ApplicationRoles.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/ApplicationUsers.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/ApplicationUsers.razor -------------------------------------------------------------------------------- /server/Pages/ApplicationUsers.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/ApplicationUsers.razor.cs -------------------------------------------------------------------------------- /server/Pages/ApplicationUsers.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/ApplicationUsers.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/Companies.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Companies.razor -------------------------------------------------------------------------------- /server/Pages/Companies.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Companies.razor.cs -------------------------------------------------------------------------------- /server/Pages/Companies.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Companies.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/Customers.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Customers.razor -------------------------------------------------------------------------------- /server/Pages/Customers.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Customers.razor.cs -------------------------------------------------------------------------------- /server/Pages/Customers.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Customers.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/EditApplicationUser.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditApplicationUser.razor -------------------------------------------------------------------------------- /server/Pages/EditApplicationUser.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditApplicationUser.razor.cs -------------------------------------------------------------------------------- /server/Pages/EditApplicationUser.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditApplicationUser.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/EditCompany.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditCompany.razor -------------------------------------------------------------------------------- /server/Pages/EditCompany.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditCompany.razor.cs -------------------------------------------------------------------------------- /server/Pages/EditCompany.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditCompany.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/EditCustomer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditCustomer.razor -------------------------------------------------------------------------------- /server/Pages/EditCustomer.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditCustomer.razor.cs -------------------------------------------------------------------------------- /server/Pages/EditCustomer.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditCustomer.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/EditInvoice.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditInvoice.razor -------------------------------------------------------------------------------- /server/Pages/EditInvoice.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditInvoice.razor.cs -------------------------------------------------------------------------------- /server/Pages/EditInvoice.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditInvoice.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/EditInvoiceLine.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditInvoiceLine.razor -------------------------------------------------------------------------------- /server/Pages/EditInvoiceLine.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditInvoiceLine.razor.cs -------------------------------------------------------------------------------- /server/Pages/EditInvoiceLine.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditInvoiceLine.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/EditProduct.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditProduct.razor -------------------------------------------------------------------------------- /server/Pages/EditProduct.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditProduct.razor.cs -------------------------------------------------------------------------------- /server/Pages/EditProduct.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditProduct.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/EditTax.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditTax.razor -------------------------------------------------------------------------------- /server/Pages/EditTax.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditTax.razor.cs -------------------------------------------------------------------------------- /server/Pages/EditTax.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/EditTax.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/InvoiceLines.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/InvoiceLines.razor -------------------------------------------------------------------------------- /server/Pages/InvoiceLines.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/InvoiceLines.razor.cs -------------------------------------------------------------------------------- /server/Pages/InvoiceLines.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/InvoiceLines.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/Invoices.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Invoices.razor -------------------------------------------------------------------------------- /server/Pages/Invoices.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Invoices.razor.cs -------------------------------------------------------------------------------- /server/Pages/Invoices.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Invoices.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/Login.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Login.razor -------------------------------------------------------------------------------- /server/Pages/Login.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Login.razor.cs -------------------------------------------------------------------------------- /server/Pages/Login.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Login.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/Products.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Products.razor -------------------------------------------------------------------------------- /server/Pages/Products.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Products.razor.cs -------------------------------------------------------------------------------- /server/Pages/Products.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Products.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/Profile.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Profile.razor -------------------------------------------------------------------------------- /server/Pages/Profile.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Profile.razor.cs -------------------------------------------------------------------------------- /server/Pages/Profile.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Profile.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/RegisterApplicationUser.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/RegisterApplicationUser.razor -------------------------------------------------------------------------------- /server/Pages/RegisterApplicationUser.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/RegisterApplicationUser.razor.cs -------------------------------------------------------------------------------- /server/Pages/RegisterApplicationUser.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/RegisterApplicationUser.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/Taxes.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Taxes.razor -------------------------------------------------------------------------------- /server/Pages/Taxes.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Taxes.razor.cs -------------------------------------------------------------------------------- /server/Pages/Taxes.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Taxes.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/Unauthorized.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Unauthorized.razor -------------------------------------------------------------------------------- /server/Pages/Unauthorized.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Unauthorized.razor.cs -------------------------------------------------------------------------------- /server/Pages/Unauthorized.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/Unauthorized.razor.designer.cs -------------------------------------------------------------------------------- /server/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/_Host.cshtml -------------------------------------------------------------------------------- /server/Pages/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Pages/_Imports.razor -------------------------------------------------------------------------------- /server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Program.cs -------------------------------------------------------------------------------- /server/Properties/DataSources/Entity.Invoice.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Properties/DataSources/Entity.Invoice.datasource -------------------------------------------------------------------------------- /server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Properties/launchSettings.json -------------------------------------------------------------------------------- /server/Services/GlobalsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Services/GlobalsService.cs -------------------------------------------------------------------------------- /server/Services/SecurityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Services/SecurityService.cs -------------------------------------------------------------------------------- /server/Services/SimpleInvoiceService.Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Services/SimpleInvoiceService.Custom.cs -------------------------------------------------------------------------------- /server/Services/SimpleInvoiceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Services/SimpleInvoiceService.cs -------------------------------------------------------------------------------- /server/Shared/LoginLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Shared/LoginLayout.razor -------------------------------------------------------------------------------- /server/Shared/LoginLayout.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Shared/LoginLayout.razor.cs -------------------------------------------------------------------------------- /server/Shared/LoginLayout.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Shared/LoginLayout.razor.designer.cs -------------------------------------------------------------------------------- /server/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Shared/MainLayout.razor -------------------------------------------------------------------------------- /server/Shared/MainLayout.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Shared/MainLayout.razor.cs -------------------------------------------------------------------------------- /server/Shared/MainLayout.razor.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Shared/MainLayout.razor.designer.cs -------------------------------------------------------------------------------- /server/Shared/RedirectToLogin.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Shared/RedirectToLogin.razor -------------------------------------------------------------------------------- /server/SimpleInvoiceManagementSoftware.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/SimpleInvoiceManagementSoftware.csproj -------------------------------------------------------------------------------- /server/Startup.Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Startup.Custom.cs -------------------------------------------------------------------------------- /server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/Startup.cs -------------------------------------------------------------------------------- /server/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/_Imports.razor -------------------------------------------------------------------------------- /server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/appsettings.json -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/AspNetCore.Reporting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/AspNetCore.Reporting.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/AspNetCore.ReportingServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/AspNetCore.ReportingServices.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/DocumentFormat.OpenXml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/DocumentFormat.OpenXml.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Entity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Entity.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Entity.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Entity.pdb -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/Radzen.Blazor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/Radzen.Blazor.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.StaticWebAssets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.StaticWebAssets.xml -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.Views.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.Views.pdb -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.deps.json -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.exe -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.pdb -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.runtimeconfig.dev.json -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/SimpleInvoiceManagementSoftware.runtimeconfig.json -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.CodeDom.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.IO.Packaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.IO.Packaging.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.Linq.Dynamic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.Linq.Dynamic.Core.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.ServiceModel.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.ServiceModel.Http.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.ServiceModel.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.ServiceModel.Primitives.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/System.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/System.ServiceModel.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/appsettings.json -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/ref/SimpleInvoiceManagementSoftware.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/ref/SimpleInvoiceManagementSoftware.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /server/bin/Debug/net5.0/wwwroot/reports/Invoice.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/bin/Debug/net5.0/wwwroot/reports/Invoice.rdlc -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/App.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/App.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/AddApplicationRole.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/AddApplicationRole.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/AddApplicationUser.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/AddApplicationUser.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/AddCompany.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/AddCompany.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/AddCustomer.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/AddCustomer.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/AddInvoice.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/AddInvoice.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/AddInvoiceLine.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/AddInvoiceLine.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/AddProduct.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/AddProduct.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/AddTax.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/AddTax.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/ApplicationRoles.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/ApplicationRoles.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/ApplicationUsers.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/ApplicationUsers.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/Companies.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/Companies.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/Customers.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/Customers.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/EditApplicationUser.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/EditApplicationUser.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/EditCompany.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/EditCompany.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/EditCustomer.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/EditCustomer.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/EditInvoice.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/EditInvoice.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/EditInvoiceLine.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/EditInvoiceLine.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/EditProduct.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/EditProduct.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/EditTax.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/EditTax.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/InvoiceLines.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/InvoiceLines.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/Invoices.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/Invoices.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/Login.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/Login.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/Products.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/Products.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/Profile.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/Profile.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/RegisterApplicationUser.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/RegisterApplicationUser.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/Taxes.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/Taxes.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/Unauthorized.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/Unauthorized.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/_Host.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/_Host.cshtml.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Pages/_Imports.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Pages/_Imports.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Shared/LoginLayout.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Shared/LoginLayout.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Shared/MainLayout.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Shared/MainLayout.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/Shared/RedirectToLogin.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/Shared/RedirectToLogin.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/Razor/_Imports.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/Razor/_Imports.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/App.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/App.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/AddApplicationRole.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/AddApplicationRole.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/AddApplicationUser.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/AddApplicationUser.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/AddCompany.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/AddCompany.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/AddCustomer.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/AddCustomer.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/AddInvoice.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/AddInvoice.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/AddInvoiceLine.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/AddInvoiceLine.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/AddProduct.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/AddProduct.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/AddTax.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/AddTax.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/ApplicationRoles.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/ApplicationRoles.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/ApplicationUsers.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/ApplicationUsers.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/Companies.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/Companies.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/Customers.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/Customers.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/EditApplicationUser.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/EditApplicationUser.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/EditCompany.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/EditCompany.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/EditCustomer.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/EditCustomer.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/EditInvoice.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/EditInvoice.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/EditInvoiceLine.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/EditInvoiceLine.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/EditProduct.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/EditProduct.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/EditTax.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/EditTax.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/InvoiceLines.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/InvoiceLines.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/Invoices.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/Invoices.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/Login.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/Login.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/Products.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/Products.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/Profile.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/Profile.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/RegisterApplicationUser.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/RegisterApplicationUser.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/Taxes.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/Taxes.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/Unauthorized.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/Unauthorized.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Pages/_Imports.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Pages/_Imports.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Shared/LoginLayout.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Shared/LoginLayout.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Shared/MainLayout.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Shared/MainLayout.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/Shared/RedirectToLogin.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/Shared/RedirectToLogin.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/SimpleInvoiceManagementSoftware.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/SimpleInvoiceManagementSoftware.dll -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/SimpleInvoiceManagementSoftware.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/SimpleInvoiceManagementSoftware.pdb -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RazorDeclaration/_Imports.razor.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RazorDeclaration/_Imports.razor.g.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RdlCompile.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/RdlCompile.cache -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/RdlCompile.compiled: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.AssemblyInfo.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e81d765b59852afa98b0bc034c8524c6f129b440 2 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | d0b013b6e1593e3c7f55384bb2ad18e3e4ce15b9 2 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorComponent.input.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorComponent.input.cache -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorComponent.output.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | 9025b14dc4d83a719b8d7959b6c78d9fdf652045 2 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | d332501d34e8ef182326c10ca0427d6c6a395be0 2 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorTargetAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.RazorTargetAssemblyInfo.cs -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.TagHelpers.output.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.TagHelpers.output.cache -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.Views.dll -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.Views.pdb -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.assets.cache -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a7e15d92d8737cb1956a96a148148fca5b828eab 2 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.dll -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 29bd66878ed53f892175c72bcf6a19d75510d9e8 2 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/SimpleInvoiceManagementSoftware.pdb -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/ref/SimpleInvoiceManagementSoftware.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/ref/SimpleInvoiceManagementSoftware.dll -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/staticwebassets/SimpleInvoiceManagementSoftware.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | 77e344b3fd2cf1552187282ead031544abbf56b5 2 | -------------------------------------------------------------------------------- /server/obj/Debug/net5.0/staticwebassets/SimpleInvoiceManagementSoftware.StaticWebAssets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/Debug/net5.0/staticwebassets/SimpleInvoiceManagementSoftware.StaticWebAssets.xml -------------------------------------------------------------------------------- /server/obj/SimpleInvoiceManagementSoftware.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/SimpleInvoiceManagementSoftware.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /server/obj/SimpleInvoiceManagementSoftware.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/SimpleInvoiceManagementSoftware.csproj.nuget.g.props -------------------------------------------------------------------------------- /server/obj/SimpleInvoiceManagementSoftware.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/SimpleInvoiceManagementSoftware.csproj.nuget.g.targets -------------------------------------------------------------------------------- /server/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/project.assets.json -------------------------------------------------------------------------------- /server/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/obj/project.nuget.cache -------------------------------------------------------------------------------- /server/wwwroot/assets/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/css/dark.css -------------------------------------------------------------------------------- /server/wwwroot/assets/css/styles-generated.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/css/styles-generated.css -------------------------------------------------------------------------------- /server/wwwroot/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/css/styles.css -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-Black.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-BlackIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-BlackIt.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-Bold.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-BoldIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-BoldIt.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-ExtraLight.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-ExtraLightIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-ExtraLightIt.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-It.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-It.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-Light.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-LightIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-LightIt.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-Regular.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-Semibold.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/SourceSansPro-SemiboldIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/SourceSansPro-SemiboldIt.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/roboto-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/roboto-regular.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/roboto-v15-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/roboto-v15-latin-300.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/roboto-v15-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/roboto-v15-latin-700.woff -------------------------------------------------------------------------------- /server/wwwroot/assets/fonts/roboto-v15-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/assets/fonts/roboto-v15-latin-regular.woff -------------------------------------------------------------------------------- /server/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/favicon.ico -------------------------------------------------------------------------------- /server/wwwroot/images/invoice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/images/invoice1.png -------------------------------------------------------------------------------- /server/wwwroot/images/invoice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/images/invoice2.png -------------------------------------------------------------------------------- /server/wwwroot/reports/Invoice.rdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go2ismail/BlazorExampleInvoiceManagementSoftware/HEAD/server/wwwroot/reports/Invoice.rdlc --------------------------------------------------------------------------------