42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
|
using ElectronicsShopContracts.ViewModels;
|
|||
|
using Newtonsoft.Json;
|
|||
|
using System.Net.Http.Headers;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace ElectronicsShopEmployeeApp {
|
|||
|
public class APIEmployee {
|
|||
|
private static readonly HttpClient _employee = new();
|
|||
|
|
|||
|
public static EmployeeViewModel? Employee { get; set; } = null;
|
|||
|
|
|||
|
public static void Connect(IConfiguration configuration) {
|
|||
|
_employee.BaseAddress = new Uri(configuration["IPAddress"]);
|
|||
|
_employee.DefaultRequestHeaders.Accept.Clear();
|
|||
|
_employee.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
|||
|
}
|
|||
|
|
|||
|
public static T? GetRequset<T>(string requestUrl) {
|
|||
|
var response = _employee.GetAsync(requestUrl);
|
|||
|
var result = response.Result.Content.ReadAsStringAsync().Result;
|
|||
|
if (response.Result.IsSuccessStatusCode) {
|
|||
|
return JsonConvert.DeserializeObject<T>(result);
|
|||
|
}
|
|||
|
else {
|
|||
|
throw new Exception(result);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public static void PostRequest<T>(string requstUrl, T model) {
|
|||
|
var json = JsonConvert.SerializeObject(model);
|
|||
|
var data = new StringContent(json, Encoding.UTF8, "application/json");
|
|||
|
|
|||
|
var response = _employee.PostAsync(requstUrl, data);
|
|||
|
|
|||
|
var result = response.Result.Content.ReadAsStringAsync().Result;
|
|||
|
if (!response.Result.IsSuccessStatusCode) {
|
|||
|
throw new Exception(result);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|