예제 #1
0
        private async Task <List <StatusPost> > GetStatusPost(List <PostBroadcastPerson> postBroadcastPeople)
        {
            string[] statusIds = await GetStatusPostIdArray(postBroadcastPeople);

            return(await _statusPostRepository.Gets(statusIds));
        }
예제 #2
0
 public async Task <List <StatusPost> > Gets(string[] id)
 {
     return(await m_StatuspostRepositoryM.Gets(id));
 }