Ejemplo n.º 1
0
 public IHttpActionResult AddPresentation([FromBody] PresentationDTO presentation)
 {
     if (string.IsNullOrEmpty(presentation.Title))
     {
         return(BadRequest());
     }
     if (_bll.AddPresentation(presentation))
     {
         return(Ok());
     }
     return(InternalServerError());
 }