Esempio n. 1
0
        public async Task <bool> UpdatePatient([FromBody] RegisterModel patient)
        {
            var result = await _userContract.UpdatePatient(_mapper.Map <RegisterModel, PatientPOCO> (patient));

            if (result)
            {
                return(true);
            }
            else
            {
                return(true);
            }
        }