public async Task <TextToSpeech> Get(int id)
 {
     using (var cnn = new SqlCeConnection(ConnectionString))
     {
         return(await cnn.GetAsync <TextToSpeech>(id));
     }
 }
Exemplo n.º 2
0
 public async Task <Voice> Get(int id)
 {
     using (var cnn = new SqlCeConnection(ConnectionString))
     {
         return(await cnn.GetAsync <Voice>(id));
     }
 }