This commit is contained in:
Allllen4a 2024-05-29 19:09:36 +04:00
parent b134a6e5e1
commit d8f88aca87
8 changed files with 13 additions and 13 deletions

View File

@ -13,9 +13,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeautySalonBusinessLogic",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeautySalonRestApi", "BeatySalonRestApi\BeautySalonRestApi.csproj", "{CF01D7E3-0253-4140-A472-C2CCD0C317B9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StaffMemberWebApp", "StaffMemberWebApp\StaffMemberWebApp.csproj", "{1D290AE2-6C45-4FAE-9F2A-7088B820D8F0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StaffMemberWebApp", "StaffMemberWebApp\StaffMemberWebApp.csproj", "{1D290AE2-6C45-4FAE-9F2A-7088B820D8F0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientWebApp", "ClientWebApp\ClientWebApp.csproj", "{274D43C4-43DE-46D8-9CB9-57A1EE96A4E6}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkerWebApp", "ClientWebApp\WorkerWebApp.csproj", "{274D43C4-43DE-46D8-9CB9-57A1EE96A4E6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -3,7 +3,7 @@ using Newtonsoft.Json;
using System.Net.Http.Headers;
using System.Text;
namespace BeutySalonClientApp
namespace WorkerWebApp
{
public class APIClient
{

View File

@ -2,7 +2,7 @@
using BeautySalonContracts.ViewModels;
using Microsoft.AspNetCore.Mvc;
namespace BeutySalonClientApp.Controllers
namespace WorkerWebApp.Controllers
{
public class EvaluationController : Controller
{

View File

@ -1,13 +1,13 @@
using BeautySalonContracts.BindingModels;
using BeautySalonContracts.ViewModels;
using ClientWebApp.Models;
using BeutySalonClientApp;
using WorkerWebApp.Models;
using WorkerWebApp;
using Microsoft.AspNetCore.Mvc;
using System.Diagnostics;
using ClientWebApp.Models;
using WorkerWebApp.Models;
using PrecastConcretePlantContracts.ViewModels;
namespace BeutySalonClientApp.Controllers
namespace WorkerWebApp.Controllers
{
public class HomeController : Controller
{

View File

@ -1,9 +1,9 @@
using BeautySalonContracts.BindingModels;
using BeautySalonContracts.ViewModels;
using BeutySalonClientApp;
using WorkerWebApp;
using Microsoft.AspNetCore.Mvc;
namespace BeutySalonClientApp.Controllers
namespace WorkerWebApp.Controllers
{
public class OrderController : Controller
{

View File

@ -1,9 +1,9 @@
using BeautySalonContracts.BindingModels;
using BeautySalonContracts.ViewModels;
using BeutySalonClientApp;
using WorkerWebApp;
using Microsoft.AspNetCore.Mvc;
namespace BeutySalonClientApp.Controllers
namespace WorkerWebApp.Controllers
{
public class ProcedureController : Controller
{

View File

@ -1,4 +1,4 @@
namespace ClientWebApp.Models
namespace WorkerWebApp.Models
{
public class ErrorViewModel
{