public IHttpActionResult addAnotation([FromBody] Anotations_Data data)
        {
            if (data == null)
            {
                //Bad request code 400
                return(BadRequest());
            }

            /*
             * if (anotationsLogic.existAnotation(data.id))
             * {
             *  //petición correcta pero no pudo ser procesada porque ya existe el archivo code 202
             *  return StatusCode(HttpStatusCode.Accepted);
             * }
             */
            if (anotationsLogic.addAnotation(data))
            {
                //petición correcta y se ha creado un nuevo recurso code 201
                return(StatusCode(HttpStatusCode.Created));
            }
            else
            {
                //No se pudo crear el recurso por un error interno code 500
                return(InternalServerError());
            }
        }
Esempio n. 2
0
        public Anotations_Data GetAnotation(int ID)
        {
            Anotations_Data result = new Anotations_Data();
            Anotation       anotations;

            using (TeConstruyeEntities1 construyeEntities = new TeConstruyeEntities1())
            {
                try
                {
                    if (!this.existAnotation(ID))
                    {
                        result = null;
                        return(result);
                    }
                    anotations        = construyeEntities.Anotations.Find(ID);
                    result.id         = anotations.id;
                    result.id_project = anotations.id_project;
                    result.date       = anotations.date;
                    result.anotation  = anotations.anotation1;
                    return(result);
                }
                catch (Exception E)
                {
                    result = null;
                    return(result);
                }
            }
        }
        public IHttpActionResult GetAnotations(int id)
        {
            if (!anotationsLogic.existAnotation(id))
            {
                //No se encontró el recurso code 404
                return(NotFound());
            }
            Anotations_Data anotations = anotationsLogic.GetAnotation(id);

            if (anotations != null)
            {
                // ok code 200
                return(Ok(anotations));
            }
            else
            {
                //No se pudo crear el recurso por un error interno code 500
                return(InternalServerError());
            }
        }
Esempio n. 4
0
 public bool updateAnotations(Anotations_Data data)
 {
     using (TeConstruyeEntities1 construyeEntities = new TeConstruyeEntities1())
     {
         try
         {
             var anotation = construyeEntities.Anotations.Find(data.id);
             anotation.id         = data.id;
             anotation.id_project = data.id_project;
             anotation.anotation1 = data.anotation;
             anotation.date       = data.date;
             anotation.Project    = construyeEntities.Projects.Find(data.id_project);
             construyeEntities.SaveChanges();
             return(true);
         }
         catch (Exception e)
         {
             return(false);
         }
     }
 }
Esempio n. 5
0
 public bool addAnotation(Anotations_Data data)
 {
     using (TeConstruyeEntities1 construyeEntities = new TeConstruyeEntities1())
     {
         Anotation newAnotation = new Anotation();
         newAnotation.id         = data.id;
         newAnotation.id_project = data.id_project;
         newAnotation.anotation1 = data.anotation;
         newAnotation.date       = data.date;
         newAnotation.Project    = construyeEntities.Projects.Find(data.id_project);
         try
         {
             construyeEntities.Anotations.Add(newAnotation);
             construyeEntities.SaveChanges();
             return(true);
         }
         catch (Exception e)
         {
             return(false);
         }
     }
 }
 public IHttpActionResult updateAnotation([FromBody] Anotations_Data data)
 {
     if (data == null)
     {
         //Bad request code 400
         return(BadRequest());
     }
     if (!anotationsLogic.existAnotation(data.id))
     {
         //petición correcta pero no pudo ser procesada porque no existe el archivo code 404
         return(NotFound());
     }
     if (anotationsLogic.updateAnotations(data))
     {
         //petición correcta y se ha creado un nuevo recurso code 200 ok
         return(Ok());
     }
     else
     {
         //No se pudo crear el recurso por un error  code 500
         return(InternalServerError());
     }
 }
Esempio n. 7
0
        public List <Object> GetListAnotations()
        {
            List <Object> dataList = new List <object>();

            using (TeConstruyeEntities1 construyeEntities = new TeConstruyeEntities1())
            {
                try
                {
                    var anotationsList = construyeEntities.Anotations.ToList();
                    int n = anotationsList.Count;
                    if (n == 0)
                    {
                        dataList = null;
                        return(dataList);
                    }
                    else
                    {
                        for (int i = 0; i < anotationsList.Count; ++i)
                        {
                            Anotations_Data data = new Anotations_Data();
                            data.id         = anotationsList.ElementAt(i).id;
                            data.id_project = anotationsList.ElementAt(i).id_project;
                            data.date       = anotationsList.ElementAt(i).date;
                            data.anotation  = anotationsList.ElementAt(i).anotation1;
                            dataList.Add(data);
                        }
                        return(dataList);
                    }
                }
                catch
                {
                    dataList = null;
                    return(dataList);
                }
            }
        }