//method to print all assignments
 public List <Assignment> PrintAllAssignments()
 {
     return(_assignStorage.GetAll());
 }
Exemple #2
0
 //method to print all assignments
 public List <Assignment> PrintAllAssignments(Guid userId)
 {
     return(_assignStorage.GetAll(userId));
 }