public IActionResult GetAll()
 {
     return(Ok(_palletRepository.GetAll()));
 }
Example #2
0
 public static List <Pallet> GetAll()
 {
     return(repository.GetAll());
 }