/// <summary>
        /// Returns true if AvailabilitiesNoBank instances are equal
        /// </summary>
        /// <param name="other">Instance of AvailabilitiesNoBank to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(AvailabilitiesNoBank other)
        {
            if (other is null)
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     Start == other.Start ||
                     Start != null &&
                     Start.Equals(other.Start)
                     ) &&
                 (
                     NumberOfOccurances == other.NumberOfOccurances ||

                     NumberOfOccurances.Equals(other.NumberOfOccurances)
                 ) &&
                 (
                     Notes == other.Notes ||
                     Notes != null &&
                     Notes.Equals(other.Notes)
                 ));
        }
        /// <summary>
        /// Gets the hash code
        /// </summary>
        /// <returns>Hash code</returns>
        public override int GetHashCode()
        {
            unchecked // Overflow is fine, just wrap
            {
                var hashCode = 41;
                // Suitable nullity checks etc, of course :)
                if (Start != null)
                {
                    hashCode = hashCode * 59 + Start.GetHashCode();
                }

                hashCode = hashCode * 59 + NumberOfOccurances.GetHashCode();
                if (Notes != null)
                {
                    hashCode = hashCode * 59 + Notes.GetHashCode();
                }
                return(hashCode);
            }
        }