помогите

This commit is contained in:
dasha 2023-04-08 17:14:55 +04:00
parent 856735868d
commit a48d6d1e44
9 changed files with 11 additions and 11 deletions

View File

@ -3,7 +3,7 @@ using Newtonsoft.Json;
using System.Net.Http.Headers;
using System.Text;
namespace HardwareShopClientApp
namespace HardwareShopStorekeeperApp
{
//Клиент который общается с API, а не наша сущность
public class APIClient

View File

@ -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
{

View File

@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;
namespace HardwareShopClientApp.Controllers
namespace HardwareShopStorekeeperApp.Controllers
{
public class StorekeeperController : Controller
{

View File

@ -1,4 +1,4 @@
namespace HardwareShopClientApp.Models
namespace HardwareShopStorekeeperApp.Models
{
public class ErrorViewModel
{

View File

@ -1,4 +1,4 @@
using HardwareShopClientApp;
using HardwareShopStorekeeperApp;
var builder = WebApplication.CreateBuilder(args);

View File

@ -8,7 +8,7 @@
}
},
"profiles": {
"HardwareShopClientApp": {
"HardwareShopStorekeeperApp": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,

View File

@ -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")

View File

@ -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>

View File

@ -1,3 +1,3 @@
@using HardwareShopClientApp
@using HardwareShopClientApp.Models
@using HardwareShopStorekeeperApp
@using HardwareShopStorekeeperApp.Models
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers