Example #1
0
 public async Task <IActionResult> Post([FromBody] set_card_exchange value)
 {
     value.CreatedAt = DateTime.Now;
     value.UpdatedAt = DateTime.Now;
     value.IsValid   = true;
     if (User.Identity is ClaimsIdentity identity)
     {
         value.CreatedBy = identity.Name ?? "test";
     }
     _setCardExchangeRpt.Add(value);
     _setCardExchangeRpt.Commit();
     return(new OkObjectResult(value));
 }
Example #2
0
        public async Task <IActionResult> Put(int id, [FromBody] set_card_exchange value)
        {
            var single = _setCardExchangeRpt.GetSingle(id);

            if (single == null)
            {
                return(NotFound());
            }
            //更新字段内容
            single.UpdatedAt = DateTime.Now;
            if (User.Identity is ClaimsIdentity identity)
            {
                single.CreatedBy = identity.Name ?? "test";
            }
            _setCardExchangeRpt.Commit();
            return(new NoContentResult());
        }