public System.Threading.Tasks.Task UpdateWordAsync(DAL.ServiceVocabulary.WordDC wordDC) { return(base.Channel.UpdateWordAsync(wordDC)); }
public System.Threading.Tasks.Task <bool> AddWordAsync(DAL.ServiceVocabulary.WordDC wordDC, int dictionaryId) { return(base.Channel.AddWordAsync(wordDC, dictionaryId)); }
public void UpdateWord(DAL.ServiceVocabulary.WordDC wordDC) { base.Channel.UpdateWord(wordDC); }
public bool AddWord(DAL.ServiceVocabulary.WordDC wordDC, int dictionaryId) { return(base.Channel.AddWord(wordDC, dictionaryId)); }