View Single Post
  #2 (permalink)  
Old 08-07-2007, 07:04 AM
coco coco is offline
Member
 
Join Date: Jul 2007
Posts: 39
coco is on a distinguished road
You're using the assignment operator in your if statements, you should be using the comparison operator:
Code:
gradingType == 1
These statements here don't make sense to me:
Code:
new TriageRubric(GradeMapper(percent));
What are you trying to do there? Trying to create a new instance of TriageRubric? If so, I see a few things:
  1. The syntax is off to create a new instance
  2. I don't see any constructor accepting arguments
  3. You cannot make an instance of an interface
Greetings.
Reply With Quote