public void Get_ReturnsDistinctSet() { // arrange var service = new IndustryService(); // act var result = service.Get(); // assert Assert.IsNotNull(result); }
private void PopulateIndustryDropDownList() { var service = new IndustryService(); IndustryDropDownList.DataSource = service.Get().ToList(); IndustryDropDownList.DataBind(); }