помогите
This commit is contained in:
parent
856735868d
commit
a48d6d1e44
@ -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
|
||||||
|
@ -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
|
||||||
{
|
{
|
||||||
|
@ -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
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
namespace HardwareShopClientApp.Models
|
namespace HardwareShopStorekeeperApp.Models
|
||||||
{
|
{
|
||||||
public class ErrorViewModel
|
public class ErrorViewModel
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
using HardwareShopClientApp;
|
using HardwareShopStorekeeperApp;
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"HardwareShopClientApp": {
|
"HardwareShopStorekeeperApp": {
|
||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"dotnetRunMessages": true,
|
"dotnetRunMessages": true,
|
||||||
"launchBrowser": true,
|
"launchBrowser": true,
|
||||||
|
@ -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")
|
||||||
|
@ -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>
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
@using HardwareShopClientApp
|
@using HardwareShopStorekeeperApp
|
||||||
@using HardwareShopClientApp.Models
|
@using HardwareShopStorekeeperApp.Models
|
||||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||||
|
Loading…
Reference in New Issue
Block a user