public FileContentResult DisplayImage(string id) { byte[] image = repository.GetImage(id); return File(image, "image/jpg"); }