// GET: ServiceProvider/Details/5
 public ActionResult Details(int id)
 {
     repo.GetAppointmentsForProviderByDay(id);
     return(View(repo.GetProvider(id)));
 }