2023-10-20 19:40:23 +03:30
|
|
|
|
namespace DocuMed.PWA.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public static class Address
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string BaseAddress = "http://localhost:32770/api";
|
|
|
|
|
|
public const string AuthController = $"{BaseAddress}/auth";
|
|
|
|
|
|
public const string CityController = $"{BaseAddress}/city";
|
|
|
|
|
|
public const string UniversityController = $"{BaseAddress}/university";
|
2023-10-22 15:51:11 +03:30
|
|
|
|
public const string SectionController = $"{BaseAddress}/section";
|
|
|
|
|
|
public const string UserController = $"{BaseAddress}/user";
|
2023-10-24 10:43:48 +03:30
|
|
|
|
public const string MedicalHistoryTemplateController = $"{BaseAddress}/medicalhistory/template";
|
2023-10-20 19:40:23 +03:30
|
|
|
|
}
|