public void copyProperties(IBill other) { other.CheckArgument(nameof(other)); Id = other.Id; Date = other.Date; Title = other.Title; Description = other.Description; Currency = other.Currency; Friends = other.Friends; }