コード例 #1
0
 public List <Street> Read(string searchString)
 {
     if (string.IsNullOrEmpty(searchString))
     {
         return(repository.GetAll());
     }
     else
     {
         return(repository.GetByName(searchString));
     }
 }