AutoMapper.UnitTests.Constructors.When_mapping_to_an_object_with_a_constructor_with_a_matching_argument.Dest.Dest C# (CSharp) Méthode

Dest() public méthode

public Dest ( int foo ) : System
foo int
Résultat System
            public Dest(int foo)
            {
                _foo = foo;
            }
        }
When_mapping_to_an_object_with_a_constructor_with_a_matching_argument.Dest