Ejemplo n.º 1
0
        public bool CaseExists(string primaryKeyValue, string instrumentName,
                               string serverParkName)
        {
            primaryKeyValue.ThrowExceptionIfNullOrEmpty("primaryKeyValue");
            instrumentName.ThrowExceptionIfNullOrEmpty("instrumentName");
            serverParkName.ThrowExceptionIfNullOrEmpty("serverParkName");

            return(_caseService.CaseExists(_connectionModel, primaryKeyValue, instrumentName, serverParkName));
        }