Ejemplo n.º 1
0
 public string EnrollStudent(EnrollStudent enrollStudent)
 {
     if (studentGateway.EnrollStudent(enrollStudent) >= 0)
     {
         return("Success");
     }
     return("Failed");
 }