Question: The Position Type Class Open the class file. This time the constructors are done. Sally's comments direct you to where you need to add the


The Position Type Class Open the class file. This time the constructors are done. Sally's comments direct you to where you need to add the custom methods. 1. Code a ToString() method that just returns the value of a Position Type object. 2. Use the Generate option again to add the Equals() and GetHashCode() methods. Refer to the final section of the Classes and Objects, Part 2" chapter if you need a quick review. 3. Assume that two PositionType objects are equal when their id fields match. HNM 1 2 3 4 5 using System; namespace TechJobsoo { 4 references public class Position Type { 1 reference public int Id { get; } private static int nextId = 1; 1 reference public string Value { get; set; } 6 7 8 9 10 11 12 13 14 15 1 reference public PositionType() { Id = nextId; nextId++; } O references public Position Type(string value) : this() { Value = value; } 16 17 18 19 20 21 22 23 24 25 26 27 // TODO: Add custom Equals(), GetHashcode(), and ToString() methods. }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
