public async Task <IActionResult> Insert(OperadorEmpresaDto.RQInsert oItem) { try { var oUserInfo = await this._jwtApplication.GetUserInfo(User); if (!oUserInfo.IsSuccess) { return(Ok(oUserInfo)); } oItem.nIdSession = int.Parse(oUserInfo.Data.sIdSession); oItem.sUsuario = oUserInfo.Data.sUsername; oItem.sFoto = ""; var oResult = await this._operadorEmpresaApplication.Insert(oItem); return(Ok(oResult)); } catch (Exception ex) { _ = this._logApplication.SetLog(EnumLogType.TEXT_N_EMAIL, EnumLogCategory.ERROR, "OperadorEmpresa-Insert", ex, oItem); return(Ok(new Response <string> { Message = "ERR-Fallo en el servidor" })); } }
public async Task <Response <int> > Insert(OperadorEmpresaDto.RQInsert input) { try { var responseInsert = new Response <int>(); var modelReq = this._mapper.Map <TM_OPERADOR_EMPRESA>(input); var result = await this._operadorEmpresaDomain.Insert(modelReq); var nestadoProceso = Int32.Parse(result.STR_ESTADOPROCESO); if (nestadoProceso == 1) { responseInsert.IsSuccess = true; responseInsert.Data = result.NUM_IDNOMINAXEMP.Value; responseInsert.Message = result.STR_MENSAJE; } else if (nestadoProceso > 1) { responseInsert.Message = result.STR_MENSAJE; } else if (nestadoProceso == 0) { throw new Exception(result.STR_MENSAJE); } return(responseInsert); } catch (Exception ex) { throw ex; } }