Exemplo n.º 1
0
 //Find one Section by the ID
 public Section findOneSection(int id)
 {
     using (SectionRepository sectionRepository = new SectionRepository("DefaultConnection"))
     {
         return(sectionRepository.findOneSection(id));
     }
 }