/// <summary> /// Lists all the entities, reformed to data transfer objects, specified by the table name. /// </summary> /// <param name="tableName">The name of the table the entities reside in.</param> /// <returns> /// The System.Threading.Tasks.Task that represents the asynchronous operation, containing /// a list of EntitySideNavDto's specified by the table name. /// </returns> public async Task <IEnumerable <EntitySideNavDto> > ListAllToDtoAsync(string tableName) { return(await EntitiesRepo.ListAllToDtoAsync(tableName)); }