2023-10-20 19:40:23 +03:30
|
|
|
|
namespace DocuMed.PWA.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public static class Address
|
|
|
|
|
|
{
|
2023-10-29 00:16:29 +03:30
|
|
|
|
public static string BaseAddress = "http://localhost:32770/api";
|
|
|
|
|
|
public static readonly string AuthController = $"{BaseAddress}/auth";
|
|
|
|
|
|
public static readonly string CityController = $"{BaseAddress}/city";
|
|
|
|
|
|
public static readonly string UniversityController = $"{BaseAddress}/university";
|
|
|
|
|
|
public static readonly string SectionController = $"{BaseAddress}/section";
|
|
|
|
|
|
public static readonly string UserController = $"{BaseAddress}/user";
|
|
|
|
|
|
public static readonly string MedicalHistoryTemplateController = $"{BaseAddress}/medicalhistory/template";
|
|
|
|
|
|
public static readonly string MedicalHistoryController = $"{BaseAddress}/medicalhistory";
|
2023-10-20 19:40:23 +03:30
|
|
|
|
}
|