Ejemplo n.º 1
0
 public UserProfile GetUser(string userName)
 {
     ICashFlowManagerService service = new CashFlowManagerService();
     UserProfile user;
     user = service.GetUser(userName);
     return user;
 }
Ejemplo n.º 2
0
 public UserProfile GetUser(int userId)
 {
     ICashFlowManagerService service = new CashFlowManagerService();
     var user  = service.GetUser(userId);
     return user;
 }