コード例 #1
0
        public async Task <Medication> GetUpdate(Medication obj, int?id)
        {
            // Flow will come here for Update
            obj = await _meRepo.GetAsync(SD.MedicationAPIPath, id.GetValueOrDefault(), HttpContext.Session.GetString("JWToken"));

            return(obj);
        }