Comunication with module sim800l

Ooops times two..

while( mySerial.available() ) //Should be Serial.available() ?
  {
    mySerial.write(Serial.read());
  }
 
  while(Serial.available()) //Should be mySerial.available() ?
  { 
    Serial.write(mySerial.read());
  }