/// <summary> /// Returns true if AssetPutResource instances are equal /// </summary> /// <param name="other">Instance of AssetPutResource to be compared</param> /// <returns>Boolean</returns> public bool Equals(AssetPutResource other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( TagId == other.TagId || TagId != null && TagId.Equals(other.TagId) ) && ( SecondTagId == other.SecondTagId || SecondTagId != null && SecondTagId.Equals(other.SecondTagId) ) && ( IsUntaggable == other.IsUntaggable || IsUntaggable != null && IsUntaggable.Equals(other.IsUntaggable) ) && ( Comment == other.Comment || Comment != null && Comment.Equals(other.Comment) ) && ( ShareTags == other.ShareTags || ShareTags != null && ShareTags.Equals(other.ShareTags) )); }
/// <summary> /// Returns true if AssetResource instances are equal /// </summary> /// <param name="other">Instance of AssetResource to be compared</param> /// <returns>Boolean</returns> public bool Equals(AssetResource other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( AssetNumber == other.AssetNumber || AssetNumber != null && AssetNumber.Equals(other.AssetNumber) ) && ( SubNumber == other.SubNumber || SubNumber != null && SubNumber.Equals(other.SubNumber) ) && ( CompanyCode == other.CompanyCode || CompanyCode != null && CompanyCode.Equals(other.CompanyCode) ) && ( TagId == other.TagId || TagId != null && TagId.Equals(other.TagId) ) && ( SecondTagId == other.SecondTagId || SecondTagId != null && SecondTagId.Equals(other.SecondTagId) ) && ( IsUntaggable == other.IsUntaggable || IsUntaggable != null && IsUntaggable.Equals(other.IsUntaggable) ) && ( LastModified == other.LastModified || LastModified != null && LastModified.Equals(other.LastModified) ) && ( Created == other.Created || Created != null && Created.Equals(other.Created) ) && ( Creator == other.Creator || Creator != null && Creator.Equals(other.Creator) ) && ( InventoryNumber == other.InventoryNumber || InventoryNumber != null && InventoryNumber.Equals(other.InventoryNumber) ) && ( SerialNumber == other.SerialNumber || SerialNumber != null && SerialNumber.Equals(other.SerialNumber) ) && ( Location == other.Location || Location != null && Location.Equals(other.Location) ) && ( Room == other.Room || Room != null && Room.Equals(other.Room) ) && ( Description == other.Description || Description != null && Description.Equals(other.Description) ) && ( CostCenter == other.CostCenter || CostCenter != null && CostCenter.Equals(other.CostCenter) ) && ( CapitalisationDate == other.CapitalisationDate || CapitalisationDate != null && CapitalisationDate.Equals(other.CapitalisationDate) ) && ( LastInventoryDate == other.LastInventoryDate || LastInventoryDate != null && LastInventoryDate.Equals(other.LastInventoryDate) ) && ( AcquisitionValue == other.AcquisitionValue || AcquisitionValue != null && AcquisitionValue.Equals(other.AcquisitionValue) ) && ( AssetSuperNumber == other.AssetSuperNumber || AssetSuperNumber != null && AssetSuperNumber.Equals(other.AssetSuperNumber) ) && ( Vendor == other.Vendor || Vendor != null && Vendor.Equals(other.Vendor) ) && ( TypeName == other.TypeName || TypeName != null && TypeName.Equals(other.TypeName) ) && ( Plant == other.Plant || Plant != null && Plant.Equals(other.Plant) ) && ( AssetClass == other.AssetClass || AssetClass != null && AssetClass.Equals(other.AssetClass) ) && ( Quantity == other.Quantity || Quantity != null && Quantity.Equals(other.Quantity) ) && ( Unit == other.Unit || Unit != null && Unit.Equals(other.Unit) ) && ( DeactivatedOn == other.DeactivatedOn || DeactivatedOn != null && DeactivatedOn.Equals(other.DeactivatedOn) ) && ( IsDeactivated == other.IsDeactivated || IsDeactivated != null && IsDeactivated.Equals(other.IsDeactivated) ) && ( CompanyCodeCurrency == other.CompanyCodeCurrency || CompanyCodeCurrency != null && CompanyCodeCurrency.Equals(other.CompanyCodeCurrency) ) && ( Comment == other.Comment || Comment != null && Comment.Equals(other.Comment) ) && ( ShareTags == other.ShareTags || ShareTags != null && ShareTags.Equals(other.ShareTags) )); }
/// <summary> /// Returns true if Asset instances are equal /// </summary> /// <param name="other">Instance of Asset to be compared</param> /// <returns>Boolean</returns> public bool Equals(Asset other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( TagId == other.TagId || TagId != null && TagId.Equals(other.TagId) ) && ( SecondTagId == other.SecondTagId || SecondTagId != null && SecondTagId.Equals(other.SecondTagId) ) && ( IsUntaggable == other.IsUntaggable || IsUntaggable != null && IsUntaggable.Equals(other.IsUntaggable) ) && ( Latitude == other.Latitude || Latitude != null && Latitude.Equals(other.Latitude) ) && ( Longitude == other.Longitude || Longitude != null && Longitude.Equals(other.Longitude) ) && ( LastModified == other.LastModified || LastModified != null && LastModified.Equals(other.LastModified) ) && ( Created == other.Created || Created != null && Created.Equals(other.Created) ) && ( Creator == other.Creator || Creator != null && Creator.Equals(other.Creator) ) && ( Comment == other.Comment || Comment != null && Comment.Equals(other.Comment) ) && ( ShareTags == other.ShareTags || ShareTags != null && ShareTags.Equals(other.ShareTags) ) && ( SapAsset == other.SapAsset || SapAsset != null && SapAsset.Equals(other.SapAsset) ) && ( AssetNumber == other.AssetNumber || AssetNumber != null && AssetNumber.Equals(other.AssetNumber) ) && ( SubNumber == other.SubNumber || SubNumber != null && SubNumber.Equals(other.SubNumber) ) && ( CompanyCode == other.CompanyCode || CompanyCode != null && CompanyCode.Equals(other.CompanyCode) )); }