Exemplo n.º 1
0
    private void initData()
    {
        List <Delivery>      list  = Leyp.SQLServerDAL.Factory.getDeliveryDAL().getAllDelivery();
        List <SalesPlatform> list0 = Leyp.SQLServerDAL.Sales.Factory.getSalesPlatformDAL().getList();
        List <Accounts>      list1 = Leyp.SQLServerDAL.Factory.getAccountsDAL().getAll();

        DeliveryID.DataSource = list;
        DeliveryID.DataBind();

        Platform.DataSource = list0;
        Platform.DataBind();


        AccountsID.DataSource = list1;
        AccountsID.DataBind();
    }
Exemplo n.º 2
0
 public override string ToString()
 {
     return("Requisition " + DeliveryID.ToString());
 }