Esempio n. 1
0
 public IActionResult GetAllCompaniesByFLetter(string letter)
 {
     try
     {
         return(Ok(GetCompanies(companyBLL.GetCompaniesByFLetter(letter).Data)));
     }
     catch (Exception ex)
     {
         return(NotFound(ex.Message));
     }
 }