public FoliageInventoryDTO(FoliageDTO foliage, InventoryDTO inventory, long imageId) { Foliage = foliage; Inventory = inventory; ImageId = imageId; }
public MaterialInventoryDTO(MaterialDTO material, InventoryDTO inventory, long imageId) { Material = material; Inventory = inventory; ImageId = imageId; }
public FoliageInventoryDTO() { Foliage = new FoliageDTO(); Inventory = new InventoryDTO(); ImageId = 0; }
public MaterialInventoryDTO() { Material = new MaterialDTO(); Inventory = new InventoryDTO(); ImageId = 0; }
public ContainerInventoryDTO() { Container = new ContainerDTO(); Inventory = new InventoryDTO(); ImageId = 0; }
public PlantInventoryDTO(PlantDTO plant, InventoryDTO inventory, long imageId) { Plant = plant; Inventory = inventory; ImageId = imageId; }
public PlantInventoryDTO() { Plant = new PlantDTO(); Inventory = new InventoryDTO(); ImageId = 0; }
public ContainerInventoryDTO(ContainerDTO container, InventoryDTO inventory, long imageId) { Container = container; Inventory = inventory; ImageId = imageId; }