NuSurvey.Web.Controllers.SurveyResponseController.GetPhoto C# (CSharp) Method

GetPhoto() public method

public GetPhoto ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult
        public ActionResult GetPhoto(int id)
        {
            var photo = _photoRepository.GetById(id);

            if (photo == null)
            {
                return File(new byte[0], "image/jpg");
            }

            return File(_blobStoargeService.GetPhoto(photo.Id, Resource.Water), "image/jpg");
        }