public int Delete(TDictionaryModel model)
 {
     return(this.dal.Delete(model));
 }
 public TDictionaryModel Insert(TDictionaryModel model)
 {
     return(this.dal.Insert(model));
 }
 public int Update(TDictionaryModel model)
 {
     return(this.dal.Update(model));
 }
 public TDictionaryModel Insert(TDictionaryModel model)
 {
     return(db.Insert(model));
 }