using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Repository.BackendRepository.Interface { public interface IUserInfoRepository : BackendRepository.Interface.IBackendRepository { /// /// 透過Account,取得當前登入使用者資訊(非同步) /// /// /// /// Task GetOneByAccountAsync(string account); /// /// 透過Account,取得當前登入使用者資訊 /// /// /// A GetMyUserInfoByAccount(string account); } }