Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. public MovieServiceForm()
  2. {
  3. InitializeComponent();
  4.  
  5. foreach (Movie m in test.AllMovies())
  6. {
  7. if(!comboBox_year.Items.Contains(m.YearOfPublication))
  8. comboBox_year.Items.Add(m.YearOfPublication);
  9. }
  10.  
  11. foreach (Category c in test.AllCategories())
  12. {
  13. comboBox_cat.Items.Add(c.Name);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement