1.public AccountInfo SignIn(string userId, string password) {
。。
这样申明函数AccountInfo 是另外的一个类这样是是什么意思啊 ?
2.在类里面申明 public AccountInfo() {
}
在里面什么都没写然后在下面又写了public AccountInfo(string userId, string password, string email, AddressInfo address, string language, string category, bool showFavorites, bool showBanners) {
this._userId = userId;
this._password = password;
this._email = email;
........这样可以吗?是什么意思啊?3.在接口里也用到了这个类public interface IAccount
{
AccountInfo SignIn(string userId, string password);
                   AddressInfo GetAddress(string userId);
                   
然后什么都没写.这里只是写了几行这个东西.是什么意思啊?