Sources/Mapping/Get-Mapper.ps1

using namespace Belin.Sql

<#
.SYNOPSIS
    Gets the singleton instance of the data mapper.
.OUTPUTS
    The singleton instance of the data mapper.
#>

function Get-Mapper {
    [CmdletBinding()]
    [OutputType([Belin.Sql.SqlMapper])]
    param ()

    [SqlMapper]::Instance
}