diff options
Diffstat (limited to 'src/PriceListTools/Position.cs')
-rw-r--r-- | src/PriceListTools/Position.cs | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/PriceListTools/Position.cs b/src/PriceListTools/Position.cs deleted file mode 100644 index 8ae5863..0000000 --- a/src/PriceListTools/Position.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System.Linq; - -namespace RhSolutions.PriceListTools -{ - public class Position - { - public string Group { get; private set; } - public string Sku { get; private set; } - public string Name { get; private set; } - - public Position(string group, string sku, string name) - { - Group = group; - Sku = sku; - Name = name; - } - - public override bool Equals(object obj) - { - if (obj as Position == null) - return false; - - Position other = obj as Position; - - return Group == other.Group && - Sku == other.Sku && - Name == other.Name; - } - - public override int GetHashCode() - { - string[] properties = new[] - { - Group, - Sku, - Name - }; - - return string.Concat(properties.Where(p => p != null)).GetHashCode(); - } - } -}
\ No newline at end of file |