Example #1
0
 public async Task <ActionResult <IEnumerable <ContactInfoViewModel> > > GetAllContactInfoByBuyerID(int buyerId)
 {
     return(Ok(await _buyerService.GetAllContactInfos(buyerId)));
 }