예제 #1
0
        public string GetPostCode(string instrumentName, string primaryKey)
        {
            instrumentName.ThrowExceptionIfNullOrEmpty("instrumentName");
            primaryKey.ThrowExceptionIfNullOrEmpty("primaryKey");

            return(_mySqlService.GetPostCode(_configurationProvider.DatabaseConnectionString, instrumentName, primaryKey));
        }