示例#1
0
        public ActionResult <CellPhone> Create(CellPhone cellPhone)
        {
            _cellPhoneService.Create(cellPhone);

            return(CreatedAtRoute("GetCellPhone", new { id = cellPhone.Id.ToString() }, cellPhone));
        }