|
|
@ -17,13 +17,10 @@ namespace CoviDok.Controllers |
|
|
|
[HttpGet] |
|
|
|
public async Task<ActionResult<GenericResponse>> GetDoctors() |
|
|
|
{ |
|
|
|
GenericResponse genericResponse = new GenericResponse |
|
|
|
{ |
|
|
|
Status = Status.Success |
|
|
|
}; |
|
|
|
GenericResponse genericResponse = new GenericResponse(); |
|
|
|
for (int i=5; i < 15; i++) |
|
|
|
{ |
|
|
|
string doc = "{ \"FirstName\": \"Dr. Schanniquah\", \"LastName\": \"The " + i + "th\"}"; |
|
|
|
string doc = "{ \"firstName\": \"Dr. Schanniquah\", \"lastName\": \"The " + i + "th\"}"; |
|
|
|
genericResponse.Body[i.ToString()] = doc; |
|
|
|
} |
|
|
|
return genericResponse; |
|
|
@ -33,14 +30,11 @@ namespace CoviDok.Controllers |
|
|
|
[HttpGet("{id}/assistants")] |
|
|
|
public async Task<ActionResult<GenericResponse>> GetAssistantsOfDoctor(string id) |
|
|
|
{ |
|
|
|
GenericResponse genericResponse = new GenericResponse |
|
|
|
{ |
|
|
|
Status = Status.Success |
|
|
|
}; |
|
|
|
genericResponse.Body["DoctorID"] = id; |
|
|
|
GenericResponse genericResponse = new GenericResponse(); |
|
|
|
genericResponse.Body["doctorID"] = id; |
|
|
|
for (int i = 5; i < 15; i++) |
|
|
|
{ |
|
|
|
string doc = "{ \"FirstName\": \"Belisarius\", \"LastName\": \"The " + i + "th Cawl\"}"; |
|
|
|
string doc = "{ \"firstName\": \"Belisarius\", \"lastName\": \"The " + i + "th Cawl\"}"; |
|
|
|
genericResponse.Body[i.ToString()] = doc; |
|
|
|
} |
|
|
|
return genericResponse; |
|
|
@ -50,14 +44,11 @@ namespace CoviDok.Controllers |
|
|
|
[HttpGet("{id}/children")] |
|
|
|
public async Task<ActionResult<GenericResponse>> GetChildrenOfDoctor(string id) |
|
|
|
{ |
|
|
|
GenericResponse genericResponse = new GenericResponse |
|
|
|
{ |
|
|
|
Status = Status.Success |
|
|
|
}; |
|
|
|
genericResponse.Body["DoctorID"] = id; |
|
|
|
GenericResponse genericResponse = new GenericResponse(); |
|
|
|
genericResponse.Body["doctorID"] = id; |
|
|
|
for (int i = 5; i < 15; i++) |
|
|
|
{ |
|
|
|
string doc = "{ \"FirstName\": \"Belisarius\", \"LastName\": \"The " + i + "th Cawl\"}"; |
|
|
|
string doc = "{ \"firstName\": \"Belisarius\", \"lastName\": \"The " + i + "th Cawl\"}"; |
|
|
|
genericResponse.Body[i.ToString()] = doc; |
|
|
|
} |
|
|
|
return genericResponse; |
|
|
|