public UserLibrary Get(int id) { return(_repository.GetById(id)); }
public ActionResult Details(int id) { return(View(_repository.GetById(id))); }