public RptSupplierInformation(Suppliers supplierses)
        {
            //
            // Required for telerik Reporting designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //

            SupplierInformation.DataSource = supplierses;
        }
Example #2
0
 public SupplierList()
 {
     Messenger.Default.Register(this,
         new Action<Suppliers>(supplierInfo => { _selectedSupplier = supplierInfo; }));
 }