示例#1
0
 public virtual string GetBookTitle(int id)
 {
     CallCounter.Increment();
     if (id == 1)
     {
         return("Twenty thousand leagues under the sea");
     }
     if (id == 2)
     {
         return("Harry Potter and the philosopher's stone");
     }
     return(null);
 }
 public string GetFullName(int userId)
 {
     CallCounter.Increment();
     return(Constants.FullName);
 }