Exemplo n.º 1
0
        public HttpResponseMessage PostCategAct([FromBody] CategoriaActivitat val)
        {
            var resposta = GimnasRepository.InsertCategAct(val);
            HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK, resposta);

            return(response);
        }
Exemplo n.º 2
0
 public CategoriaActivitatDAO(CategoriaActivitat a)
 {
     this.Id    = a.Id;
     this.nom   = a.nom;
     this.image = a.image;
 }