Esempio n. 1
0
 internal List <Drug> GetAll()
 => _drugRepository.GetAll();
Esempio n. 2
0
 protected override void Init()
 {
     Items = new ObservableCollection <Entity>(repository.GetAll());
 }
 public IEnumerable <Drug> GetAll()
 {
     return(_drugRepository.GetAll());
 }