public IEnumerable <Translation> GetByUnit(int UnitId)
 {
     return(_translationRepository.FindBy(x => x.UnitId == UnitId));
 }