Ejemplo n.º 1
0
        public HttpResponseMessage Reject([FromBody] FightParameter2Model fight)
        {
            FightLogic fightLogic = new FightLogic();

            jsonResult = fightLogic.Reject(fight);

            returnResult.Content = new StringContent(jsonResult, Encoding.UTF8, "application/json");
            return(returnResult);
        }