0

我在我的应用程序的业务层工作,我想显示一个对象列表<>。谢谢。

该应用程序在 C# 中。

//view layer
dataGridView1.DataSource = RecMatBLL.Inventary.GetTODOInventory(); //dont show but compile

//business layer
public static List<Inventory> GetTODOInventory() {
        List<Inventory> newInventory = new List<Inventory>();
        List<InventoryEntity> inventorys = Provider.Inventory.GetInventory();
        foreach (InventoryEntity i in inventorys)
        {
            newInventory.Add(new Inventory(i.IdComponent, i.IdLot, i.Volume, i.Description, i.Location));
        }
        return newInventory;

    }
4

0 回答 0