2023-10-20 19:40:23 +03:30
|
|
|
|
namespace DocuMed.PWA.Models;
|
|
|
|
|
|
|
|
|
|
|
|
public static class Address
|
|
|
|
|
|
{
|
2023-11-05 16:14:13 +03:30
|
|
|
|
#if DEBUG
|
2023-10-29 00:16:29 +03:30
|
|
|
|
public static string BaseAddress = "http://localhost:32770/api";
|
2023-11-18 13:02:16 +03:30
|
|
|
|
//public static string BaseAddress = "https://api.documed.ir/api";
|
2023-11-05 16:14:13 +03:30
|
|
|
|
#else
|
|
|
|
|
|
public static string BaseAddress = "https://api.documed.ir/api";
|
|
|
|
|
|
#endif
|
|
|
|
|
|
public static string AuthController = $"{BaseAddress}/auth";
|
|
|
|
|
|
public static string CityController = $"{BaseAddress}/city";
|
|
|
|
|
|
public static string UniversityController = $"{BaseAddress}/university";
|
|
|
|
|
|
public static string SectionController = $"{BaseAddress}/section";
|
|
|
|
|
|
public static string UserController = $"{BaseAddress}/user";
|
|
|
|
|
|
public static string MedicalHistoryTemplateController = $"{BaseAddress}/medicalhistory/template";
|
|
|
|
|
|
public static string MedicalHistoryController = $"{BaseAddress}/medicalhistory";
|
2023-10-20 19:40:23 +03:30
|
|
|
|
}
|