/// <summary>
 /// Binds the data.
 /// </summary>
 private void BindData()
 {
     Entities = localSql.GetForwardEntities();
     Statuses = localSql.GetForwardStatuses();
     Statuses.Insert(0, new IntegerComboBoxModel {
         Name = "All", Value = 0
     });
 }