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

            return(_catiService.MakeSuperAppointment(_connectionModel, instrumentName, serverParkName, primaryKeyValue));
        }