Exemplo n.º 1
0
        public IHttpActionResult GetUserPhoto(string userId)
        {
            var result = _wheelService.GetUserImage(userId);

            return(result == null?Ok((byte[])null) : Ok(result));
        }