|
|
@ -15,12 +15,12 @@ namespace CoviDok.Data.MySQL |
|
|
|
public class DoctorManager |
|
|
|
{ |
|
|
|
private readonly IDoctorHandler handler = new MySqlDoctorHandler(); |
|
|
|
public async Task<List<PublicDoctor>> GetDoctors() |
|
|
|
public async Task<List<PublicDoctor>> GetDoctors(string firstName = null, string lastName = null) |
|
|
|
{ |
|
|
|
|
|
|
|
List<PublicDoctor> ret = new List<PublicDoctor>(); |
|
|
|
await Task.Run( () => { |
|
|
|
var docs = handler.GetDoctors(); |
|
|
|
var docs = handler.GetDoctors(firstName, lastName); |
|
|
|
foreach (Doctor doctor in docs) |
|
|
|
{ |
|
|
|
ret.Add(doctor.ToPublic()); |
|
|
|