Ejemplo n.º 1
0
        public JsonResult RecordWeight(string personId, string weightValue, string currentDateTime)
        {
            DateTime      localTime = DateTime.Parse(currentDateTime);
            WeightHandler handler   = new WeightHandler();

            handler.Insert(Convert.ToInt32(personId), Convert.ToDecimal(weightValue), localTime);

            return(Json("Posted Good"));
        }