public List <OperatorEN> GetOperatorList(int pCountryID) { List <OperatorEN> operatorsList = new List <OperatorEN>(); try { operatorsList = operatorDAL.GetOperators(pCountryID); } catch (Exception ex) { Console.WriteLine(ex.InnerException); EventViewerLoggerBL.LogError(ex.Message); } return(operatorsList); }