Esempio n. 1
0
 public List <Person> GetPersonList()
 {
     return(_repository.GetNameList().Select(i => new Person {
         FullName = i
     }).ToList());
 }