Inheritance: IServiceMetadata
        public IServiceMetadata GetMetadataFor(object service)
        {
            metadata = new ServiceMetadata
            {
                Service = service,
                ServiceType = service.GetType()
            };

            SetOrderedProperties();

            return metadata;
        }