/// <summary> /// Updae CompanySize AppService /// </summary> /// <returns>bool<bool></returns> public async Task <bool> UpdateCompanySize(CompanySizeUpdateDTO companySizeUpdateDTO) { #region Declare a return type with initial value. bool isUpdated = false; #endregion try { if (companySizeUpdateDTO != null) { isUpdated = await CompanySizeBusinessMapping.UpdateCompanySize(companySizeUpdateDTO); } } catch (Exception exception) {} return(isUpdated); }
/// <summary> /// Update User Action Activity Log /// </summary> /// <param name=></param> /// <returns>bool</returns> public async Task <bool> UpdateCompanySize(CompanySizeUpdateDTO CompanySizeUpdateDTO) { #region Declare a return type with initial value. bool isCompanySizeUpdated = default(bool); #endregion try { if (CompanySizeUpdateDTO != null) { #region Vars CompanySize CompanySize = null; #endregion #region Get Activity By Id CompanySize = await UnitOfWork.CompanySizeRepository.GetById(CompanySizeUpdateDTO.CompanySizeId); #endregion if (CompanySize != null) { #region Mapping CompanySize = CompanySizeMapping.MappingCompanySizeupdateDTOToCompanySize(CompanySize, CompanySizeUpdateDTO); #endregion if (CompanySize != null) { #region Update Entity UnitOfWork.CompanySizeRepository.Update(CompanySize); isCompanySizeUpdated = await UnitOfWork.Commit() > default(int); #endregion } } } } catch (Exception exception) { } return(isCompanySizeUpdated); }
public async Task <ActionResult <CommonAPIResponse <bool> > > UpdateCompanySize(CompanySizeUpdateDTO CompanySizeUpdateDTO) { #region Declare return type with initial value. JsonResult jsonResult = GetDefaultJsonResult <bool>(); #endregion try { #region Validate userUpdateDTO for nullability before prepaing the response. if (await CompanySizeAppService.UpdateCompanySize(CompanySizeUpdateDTO)) { jsonResult = JsonResultResponse(CommonHelper.GetResponseMessage(APIResponseMessage.Success, CurrentLanguagId), true, HttpStatusCode.OK); } else { jsonResult = JsonResultResponse(CommonHelper.GetResponseMessage(APIResponseMessage.InvalidCredentials, CurrentLanguagId), false, HttpStatusCode.BadRequest); } #endregion } catch (Exception exception) { } return(jsonResult); }
/// <summary> /// Mapping User Activity Log DTO to Action /// </summary> /// <param name=></param> /// <param name=></param> /// <returns></returns> public CompanySize MappingCompanySizeupdateDTOToCompanySize(CompanySize companySize, CompanySizeUpdateDTO CompanySizeUpdateDTO) { #region Declare Return Var with Intial Value CompanySize CompanySize = companySize; #endregion try { if (CompanySizeUpdateDTO.CompanySizeId > default(int)) { CompanySize.CompanySizeId = CompanySizeUpdateDTO.CompanySizeId; CompanySize.CompanySizeName = CompanySizeUpdateDTO.CompanySizeName; } } catch (Exception exception) { } return(CompanySize); }