Ejemplo n.º 1
0
 /// <summary>
 /// Retrieves the quantity and total value for each product type distributed by a given doctor.
 /// </summary>
 /// <param name="username">doctor username</param>
 /// <returns>a list of quantity, package type and value of packages</returns>
 public List <MedicationTypeViewData> DoctorActivity(string username)
 {
     return(ReportDAO.FindDoctorActivityByUserName(username));
 }