Exemplo n.º 1
0
        public PlantInventoryDTO(PlantDTO plant, InventoryDTO inventory, long imageId)
        {
            Plant = plant;

            Inventory = inventory;

            ImageId = imageId;
        }
Exemplo n.º 2
0
        public PlantInventoryDTO()
        {
            Plant = new PlantDTO();

            Inventory = new InventoryDTO();

            ImageId = 0;
        }