コード例 #1
0
        public async Task <IHttpActionResult> Reject([FromBody] dynamic viewmodel)
        {
            int    id   = viewmodel.id;
            string note = viewmodel.note;

            await _flatService.Reject(id, note, CurrentUser);

            return(Ok());
        }