예제 #1
0
 public Task <Seo> UpdateSeoHomeAsync(ReqUpdateSeoHome seoData)
 {
     try
     {
         return(null);
     }
     catch (Exception ex)
     {
         _logger.LogError(ex.Message.ToString());
         throw ex;
     }
 }
예제 #2
0
        public async Task <ActionResult> UpdateSeoHome([FromForm] ReqUpdateSeoHome reqUpdateSeoHome)
        {
            var result = await _seoLogic.UpdateSeoHomeAsync(reqUpdateSeoHome);

            return(Ok(new BaseResponse(result)));
        }