Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shiv Ratan Kumar committed Dec 19, 2021
1 parent 26711e5 commit 0503c78
Show file tree
Hide file tree
Showing 148 changed files with 52,427 additions and 0 deletions.
25 changes: 25 additions & 0 deletions WebAppRestaurantDemoApp.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.32002.261
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAppRestaurantDemoApp", "WebAppRestaurantDemoApp\WebAppRestaurantDemoApp.csproj", "{1106F4A7-8468-47E4-94B9-7BFBA6B9452A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1106F4A7-8468-47E4-94B9-7BFBA6B9452A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1106F4A7-8468-47E4-94B9-7BFBA6B9452A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1106F4A7-8468-47E4-94B9-7BFBA6B9452A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1106F4A7-8468-47E4-94B9-7BFBA6B9452A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C645750A-4C31-428E-A97E-7444D45D3AD1}
EndGlobalSection
EndGlobal
23 changes: 23 additions & 0 deletions WebAppRestaurantDemoApp/App_Start/RouteConfig.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

namespace WebAppRestaurantDemoApp
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
}
18 changes: 18 additions & 0 deletions WebAppRestaurantDemoApp/Content/Site.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
body {
padding-top: 50px;
padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
padding-left: 15px;
padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
max-width: 280px;
}

Loading

0 comments on commit 0503c78

Please sign in to comment.