Exemplo n.º 1
0
 public System.Threading.Tasks.Task UpdateWordAsync(DAL.ServiceVocabulary.WordDC wordDC)
 {
     return(base.Channel.UpdateWordAsync(wordDC));
 }
Exemplo n.º 2
0
 public System.Threading.Tasks.Task <bool> AddWordAsync(DAL.ServiceVocabulary.WordDC wordDC, int dictionaryId)
 {
     return(base.Channel.AddWordAsync(wordDC, dictionaryId));
 }
Exemplo n.º 3
0
 public void UpdateWord(DAL.ServiceVocabulary.WordDC wordDC)
 {
     base.Channel.UpdateWord(wordDC);
 }
Exemplo n.º 4
0
 public bool AddWord(DAL.ServiceVocabulary.WordDC wordDC, int dictionaryId)
 {
     return(base.Channel.AddWord(wordDC, dictionaryId));
 }