fix client app

This commit is contained in:
Zakharov_Rostislav 2024-05-13 12:37:11 +04:00
parent 73c4800cad
commit c41f0e635f
12 changed files with 32 additions and 28 deletions

View File

@ -35,5 +35,6 @@ namespace CarShowroomDataModels.Views
ModelId = model.ModelId;
IsSaled = model.IsSaled;
}
}
public CarView() { }
}
}

View File

@ -20,6 +20,7 @@ namespace CarShowroomDataModels.Views
Id = model.Id;
Name = model.Name;
PhoneNumber = model.PhoneNumber;
}
}
}
public ClientView() { }
}
}

View File

@ -24,5 +24,6 @@ namespace CarShowroomDataModels.Views
Email = model.Email;
Password = model.Password;
}
}
public EmployeeView() {}
}
}

View File

@ -17,6 +17,7 @@ namespace CarShowroomDataModels.Views
{
Id = model.Id;
Name = model.Name;
}
}
}
public MakeView() { }
}
}

View File

@ -24,6 +24,7 @@ namespace CarShowroomDataModels.Views
Name = model.Name;
Price = model.Price;
MakeId = model.MakeId;
}
}
}
public ModelView() { }
}
}

View File

@ -46,5 +46,6 @@ namespace CarShowroomDataModels.Views
ClientId = model.ClientId;
EmployeeId = model.EmployeeId;
}
}
public SaleView() { }
}
}

View File

@ -17,6 +17,7 @@ namespace CarShowroomDataModels.Views
Id = model.Id;
Name = model.Name;
Cost = model.Cost;
}
}
}
public ServiceView() { }
}
}

View File

@ -11,14 +11,9 @@ namespace CarShowroomManagerApp
private static readonly HttpClient _client = new();
public static EmployeeView? Client { get; set; } = null;
public static void Connect(IConfiguration configuration)
{
string? ip = configuration["IPAddress"];
if (ip == null)
{
throw new Exception("RestApi application's IPAddress is undefined");
}
_client.BaseAddress = new Uri(ip);
_client.DefaultRequestHeaders.Accept.Clear();
{
_client.BaseAddress = new Uri(configuration["IPAddress"]);
_client.DefaultRequestHeaders.Accept.Clear();
_client.DefaultRequestHeaders.Accept.Add(new
MediaTypeWithQualityHeaderValue("application/json"));
}

View File

@ -56,7 +56,7 @@ namespace CarShowroomManagerApp.Controllers
public void Enter(string login, string password)
{
if (string.IsNullOrEmpty(login) ||
string.IsNullOrEmpty(password))
string.IsNullOrEmpty(password))
{
throw new Exception("Введите логин и пароль");
}
@ -124,7 +124,6 @@ namespace CarShowroomManagerApp.Controllers
Name = name,
PhoneNumber = phonenumber
});
Response.Redirect("Enter");
return;
}
public IActionResult ClientUpdate()

View File

@ -1,3 +1,5 @@
using CarShowroomDataModels.Models;
namespace CarShowroomManagerApp
{
public class Program
@ -8,11 +10,12 @@ namespace CarShowroomManagerApp
// Add services to the container.
builder.Services.AddControllersWithViews();
var app = builder.Build();
var app = builder.Build();
ApiClient.Connect(builder.Configuration);
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Home/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.

View File

@ -14,8 +14,8 @@
return;
}
<p>
<a asp-action="ClientCreate">Создать перевод</a>
<a asp-action="ClientUpdate">Обновить перевод</a>
<a asp-action="ClientCreate">Зарегистрировать клиента</a>
<a asp-action="ClientUpdate">Обновить данные клиента</a>
</p>
<table class="table">
<thead>

View File

@ -7,11 +7,11 @@
<form method="post">
<div class="row">
<div class="col-4">Логин:</div>
<div class="col-8"><input type="text" name="login" /></div>
<div class="col-8"><input type="text" name="login" id="login" /></div>
</div>
<div class="row">
<div class="col-4">Пароль:</div>
<div class="col-8"><input type="password" name="password" /></div>
<div class="col-8"><input type="password" name="password" id="password" /></div>
</div>
<div class="row">
<div class="col-8"></div>