/// <summary> /// Get all Country from Country table /// </summary> /// <returns></returns> public IList <ADMCountry> GetAllCountry() { try { return(_CountryDAOLinq.All().ToList()); } catch (Exception ex) { return(null); } }