コード例 #1
0
 public User GetById(Guid Id)
 {
     try {
         User user = (User)_plugin.ReadById(Id);
         return(user);
     } catch (Exception ex) {
         throw new UserAdapterNotFoundException(ex.ToString());
     }
 }
コード例 #2
0
 public User GetById(Guid Id)
 {
     return((User)_plugin.ReadById(Id));
 }