public async Task <string> DeleteLanguage(int id)
        {
            try
            {
                var res = await _repository.DeleteLanguages(id);

                return(res);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }