コード例 #1
0
ファイル: PoemService.cs プロジェクト: hiJackinGg/PoemGen
 // Summary:
 //     Retrieves the all poem schemas using repository object to access the database.
 //
 // Returns:
 //     The list of PoemSchema objects.
 public List <PoemSchema> GetAllPoemSchemas()
 {
     return(poemRepository.GetAllSchemas());
 }