Ejemplo n.º 1
0
 public async Task <IActionResult> GetAll()
 {
     return(Ok(await _sellerService.GetAllSellers()));
 }
Ejemplo n.º 2
0
        public IActionResult GetAllSeller()
        {
            var seller = _sellerService.GetAllSellers();

            return(Ok(seller));
        }
Ejemplo n.º 3
0
        public IActionResult GetAll()
        {
            var allSellersDto = _sellerService.GetAllSellers();

            return(Ok(allSellersDto));
        }