Example #1
0
 /// <summary>
 /// Method whose purpose is to get all
 /// drive records from the database.
 /// </summary>
 /// <returns>
 /// Returns all drive records from the database
 /// as a IList of drive model objects.
 /// </returns>
 public IList <DriveModel> GetAll()
 {
     return(_driveRepository.GetAll());
 }
Example #2
0
 public List <Drives> GetLocalDrives()
 {
     return(_embyDriveRepository.GetAll());
 }
 public static List <Drive> GetAll()
 {
     return(repository.GetAll());
 }