Beispiel #1
0
        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;
        }
Beispiel #3
0
        public FoliageInventoryDTO()
        {
            Foliage = new FoliageDTO();

            Inventory = new InventoryDTO();

            ImageId = 0;
        }
        public MaterialInventoryDTO()
        {
            Material = new MaterialDTO();

            Inventory = new InventoryDTO();

            ImageId = 0;
        }
Beispiel #5
0
        public ContainerInventoryDTO()
        {
            Container = new ContainerDTO();

            Inventory = new InventoryDTO();

            ImageId = 0;
        }
Beispiel #6
0
        public PlantInventoryDTO(PlantDTO plant, InventoryDTO inventory, long imageId)
        {
            Plant = plant;

            Inventory = inventory;

            ImageId = imageId;
        }
Beispiel #7
0
        public PlantInventoryDTO()
        {
            Plant = new PlantDTO();

            Inventory = new InventoryDTO();

            ImageId = 0;
        }
Beispiel #8
0
 public ContainerInventoryDTO(ContainerDTO container, InventoryDTO inventory, long imageId)
 {
     Container = container;
     Inventory = inventory;
     ImageId   = imageId;
 }