├── StudentRegisteration.sln ├── StudentRegisteration ├── Controllers │ ├── RegisterController.cs │ └── WeatherForecastController.cs ├── Models │ └── Registration.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── StudentRegisteration.csproj ├── StudentRegisteration.csproj.user ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Azure.Core.dll │ │ ├── Azure.Identity.dll │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ ├── Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.Identity.Client.Extensions.Msal.dll │ │ ├── Microsoft.Identity.Client.dll │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.SqlServer.Server.dll │ │ ├── Microsoft.Win32.Registry.dll │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── Newtonsoft.Json.Bson.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── StudentRegisteration.deps.json │ │ ├── StudentRegisteration.dll │ │ ├── StudentRegisteration.exe │ │ ├── StudentRegisteration.pdb │ │ ├── StudentRegisteration.runtimeconfig.dev.json │ │ ├── StudentRegisteration.runtimeconfig.json │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Drawing.Common.dll │ │ ├── System.Formats.Asn1.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Memory.Data.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.Cryptography.Cng.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── System.Security.Permissions.dll │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Text.Encoding.CodePages.dll │ │ ├── System.Text.Encodings.Web.dll │ │ ├── System.Text.Json.dll │ │ ├── System.Windows.Extensions.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp2.1 │ │ │ └── System.Security.Principal.Windows.dll │ │ │ ├── netcoreapp3.1 │ │ │ └── System.Drawing.Common.dll │ │ │ └── netstandard2.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-arm64 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x64 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x86 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ └── win │ │ └── lib │ │ ├── netcoreapp2.1 │ │ └── System.Security.Principal.Windows.dll │ │ ├── netcoreapp3.0 │ │ └── System.Security.Cryptography.Cng.dll │ │ ├── netcoreapp3.1 │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── System.Drawing.Common.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Text.Encoding.CodePages.dll │ │ └── System.Windows.Extensions.dll │ │ ├── netstandard2.0 │ │ ├── Microsoft.Win32.Registry.dll │ │ ├── System.Security.AccessControl.dll │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ └── netstandard2.1 │ │ └── Microsoft.Data.SqlClient.dll └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── StudentRegisteration.AssemblyInfo.cs │ │ ├── StudentRegisteration.AssemblyInfoInputs.cache │ │ ├── StudentRegisteration.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── StudentRegisteration.MvcApplicationPartsAssemblyInfo.cache │ │ ├── StudentRegisteration.RazorTargetAssemblyInfo.cache │ │ ├── StudentRegisteration.assets.cache │ │ ├── StudentRegisteration.csproj.AssemblyReference.cache │ │ ├── StudentRegisteration.csproj.CopyComplete │ │ ├── StudentRegisteration.csproj.CoreCompileInputs.cache │ │ ├── StudentRegisteration.csproj.FileListAbsolute.txt │ │ ├── StudentRegisteration.dll │ │ ├── StudentRegisteration.genruntimeconfig.cache │ │ ├── StudentRegisteration.pdb │ │ ├── apphost.exe │ │ └── staticwebassets │ │ ├── StudentRegisteration.StaticWebAssets.Manifest.cache │ │ └── StudentRegisteration.StaticWebAssets.xml │ ├── StudentRegisteration.csproj.nuget.dgspec.json │ ├── StudentRegisteration.csproj.nuget.g.props │ ├── StudentRegisteration.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── resgistration ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── Home.js ├── Student.js ├── Variables.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /StudentRegisteration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration.sln -------------------------------------------------------------------------------- /StudentRegisteration/Controllers/RegisterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/Controllers/RegisterController.cs -------------------------------------------------------------------------------- /StudentRegisteration/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /StudentRegisteration/Models/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/Models/Registration.cs -------------------------------------------------------------------------------- /StudentRegisteration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/Program.cs -------------------------------------------------------------------------------- /StudentRegisteration/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/Properties/launchSettings.json -------------------------------------------------------------------------------- /StudentRegisteration/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/Startup.cs -------------------------------------------------------------------------------- /StudentRegisteration/StudentRegisteration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/StudentRegisteration.csproj -------------------------------------------------------------------------------- /StudentRegisteration/StudentRegisteration.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/StudentRegisteration.csproj.user -------------------------------------------------------------------------------- /StudentRegisteration/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/WeatherForecast.cs -------------------------------------------------------------------------------- /StudentRegisteration/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/appsettings.Development.json -------------------------------------------------------------------------------- /StudentRegisteration/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/appsettings.json -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Azure.Core.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Azure.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Azure.Identity.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.Extensions.Msal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.Extensions.Msal.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.SqlServer.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.SqlServer.Server.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.deps.json -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.exe -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.pdb -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.runtimeconfig.dev.json -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/StudentRegisteration.runtimeconfig.json -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Drawing.Common.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Formats.Asn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Formats.Asn1.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Memory.Data.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.Cryptography.Cng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.Cryptography.Cng.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.Permissions.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Text.Json.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.AssemblyInfo.cs -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | eb9de49c138088c24ff2e2714bd9d7e0f2292193 2 | -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 9ccfce0f550b93231e623a4530cd9d0c2dcdbc21 2 | -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.assets.cache -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 97094f9e7f3f5c4916de531b03b57151927f99e9 2 | -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.dll -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 7303a48c1a67b1105a5d3bf63aaffb27e6adb81d 2 | -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/Debug/netcoreapp3.1/StudentRegisteration.pdb -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/staticwebassets/StudentRegisteration.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StudentRegisteration/obj/Debug/netcoreapp3.1/staticwebassets/StudentRegisteration.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StudentRegisteration/obj/StudentRegisteration.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/StudentRegisteration.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /StudentRegisteration/obj/StudentRegisteration.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/StudentRegisteration.csproj.nuget.g.props -------------------------------------------------------------------------------- /StudentRegisteration/obj/StudentRegisteration.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/StudentRegisteration.csproj.nuget.g.targets -------------------------------------------------------------------------------- /StudentRegisteration/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/project.assets.json -------------------------------------------------------------------------------- /StudentRegisteration/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/StudentRegisteration/obj/project.nuget.cache -------------------------------------------------------------------------------- /resgistration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/README.md -------------------------------------------------------------------------------- /resgistration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/package-lock.json -------------------------------------------------------------------------------- /resgistration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/package.json -------------------------------------------------------------------------------- /resgistration/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/public/favicon.ico -------------------------------------------------------------------------------- /resgistration/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/public/index.html -------------------------------------------------------------------------------- /resgistration/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/public/logo192.png -------------------------------------------------------------------------------- /resgistration/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/public/logo512.png -------------------------------------------------------------------------------- /resgistration/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/public/manifest.json -------------------------------------------------------------------------------- /resgistration/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/public/robots.txt -------------------------------------------------------------------------------- /resgistration/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/App.css -------------------------------------------------------------------------------- /resgistration/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/App.js -------------------------------------------------------------------------------- /resgistration/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/App.test.js -------------------------------------------------------------------------------- /resgistration/src/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/Home.js -------------------------------------------------------------------------------- /resgistration/src/Student.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/Student.js -------------------------------------------------------------------------------- /resgistration/src/Variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/Variables.js -------------------------------------------------------------------------------- /resgistration/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/index.css -------------------------------------------------------------------------------- /resgistration/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/index.js -------------------------------------------------------------------------------- /resgistration/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/logo.svg -------------------------------------------------------------------------------- /resgistration/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/reportWebVitals.js -------------------------------------------------------------------------------- /resgistration/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notwld/lab-exam-practice-react-dotnet/HEAD/resgistration/src/setupTests.js --------------------------------------------------------------------------------