public UpdateCaseResponseMessage UpdateCase(UpdateCaseRequestMessage request) { UpdateCaseResponseMessage response = new UpdateCaseResponseMessage(); try { response.caseId = request.caseId; response.successFlag = 1; } catch (Exception e) { throw; } return(response); }
public UpdateCaseResponseMessage UpdateCase(UpdateCaseRequestMessage request) { UpdateCaseResponseMessage response = null; try { Data.DAupdateCase da = new Data.DAupdateCase(); response = da.UpdateCase(request); } catch { //Log evento de errores response = null; } return(response); }
public UpdateCaseResponseMessage UpdateCase(UpdateCaseRequestMessage request) { //var response = new UpdateCaseResponseMessage(); //response.successflag = 5; //return response; UpdateCaseResponseMessage response = null; try { BL.BLUpdateCase obj = new BL.BLUpdateCase(); response = obj.UpdateCase(request); } catch { //Log evento de errores response = null; } return(response); }