19 lines
898 B
C#
19 lines
898 B
C#
namespace DocuMed.PWA.Models;
|
|
|
|
public static class Address
|
|
{
|
|
#if DEBUG
|
|
public static string BaseAddress = "http://localhost:32780/api";
|
|
//public static string BaseAddress = "https://api.documed.ir/api";
|
|
#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";
|
|
public static string PatientController = $"{BaseAddress}/patient";
|
|
} |