Example #1
0
        public ContainerInventoryDTO()
        {
            Container = new ContainerDTO();

            Inventory = new InventoryDTO();

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