помогите
This commit is contained in:
parent
856735868d
commit
a48d6d1e44
@ -3,7 +3,7 @@ using Newtonsoft.Json;
|
||||
using System.Net.Http.Headers;
|
||||
using System.Text;
|
||||
|
||||
namespace HardwareShopClientApp
|
||||
namespace HardwareShopStorekeeperApp
|
||||
{
|
||||
//Клиент который общается с API, а не наша сущность
|
||||
public class APIClient
|
||||
|
@ -1,11 +1,11 @@
|
||||
using HardwareShopClientApp.Models;
|
||||
using HardwareShopStorekeeperApp.Models;
|
||||
using HardwareShopContracts.BindingModels;
|
||||
using HardwareShopContracts.ViewModels;
|
||||
using HardwareShopDataModels.Enums;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace HardwareShopClientApp.Controllers
|
||||
namespace HardwareShopStorekeeperApp.Controllers
|
||||
{
|
||||
public class HomeController : Controller
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace HardwareShopClientApp.Controllers
|
||||
namespace HardwareShopStorekeeperApp.Controllers
|
||||
{
|
||||
public class StorekeeperController : Controller
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace HardwareShopClientApp.Models
|
||||
namespace HardwareShopStorekeeperApp.Models
|
||||
{
|
||||
public class ErrorViewModel
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
using HardwareShopClientApp;
|
||||
using HardwareShopStorekeeperApp;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"HardwareShopClientApp": {
|
||||
"HardwareShopStorekeeperApp": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
|
@ -6,7 +6,7 @@
|
||||
<title>@ViewData["Title"] - Магазин компьютерной техники</title>
|
||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/HardwareShopClientApp.styles.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/HardwareShopStorekeeperApp.styles.css" asp-append-version="true" />
|
||||
</head>
|
||||
<body>
|
||||
@RenderSection("Header")
|
||||
|
@ -6,7 +6,7 @@
|
||||
<title>@ViewData["Title"] - Магазин компьютерной техники</title>
|
||||
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
||||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/HardwareShopClientApp.styles.css" asp-append-version="true" />
|
||||
<link rel="stylesheet" href="~/HardwareShopStorekeeperApp.styles.css" asp-append-version="true" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
|
@ -1,3 +1,3 @@
|
||||
@using HardwareShopClientApp
|
||||
@using HardwareShopClientApp.Models
|
||||
@using HardwareShopStorekeeperApp
|
||||
@using HardwareShopStorekeeperApp.Models
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
|
Loading…
Reference in New Issue
Block a user