помогите

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.Net.Http.Headers;
using System.Text; using System.Text;
namespace HardwareShopClientApp namespace HardwareShopStorekeeperApp
{ {
//Клиент который общается с API, а не наша сущность //Клиент который общается с API, а не наша сущность
public class APIClient public class APIClient

View File

@ -1,11 +1,11 @@
using HardwareShopClientApp.Models; using HardwareShopStorekeeperApp.Models;
using HardwareShopContracts.BindingModels; using HardwareShopContracts.BindingModels;
using HardwareShopContracts.ViewModels; using HardwareShopContracts.ViewModels;
using HardwareShopDataModels.Enums; using HardwareShopDataModels.Enums;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using System.Diagnostics; using System.Diagnostics;
namespace HardwareShopClientApp.Controllers namespace HardwareShopStorekeeperApp.Controllers
{ {
public class HomeController : Controller public class HomeController : Controller
{ {

View File

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

View File

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

View File

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

View File

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

View File

@ -6,7 +6,7 @@
<title>@ViewData["Title"] - Магазин компьютерной техники</title> <title>@ViewData["Title"] - Магазин компьютерной техники</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" /> <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="~/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> </head>
<body> <body>
@RenderSection("Header") @RenderSection("Header")

View File

@ -6,7 +6,7 @@
<title>@ViewData["Title"] - Магазин компьютерной техники</title> <title>@ViewData["Title"] - Магазин компьютерной техники</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" /> <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="~/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> </head>
<body> <body>
<header> <header>

View File

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