Exemplo n.º 1
0
        public static ISMSGateway GetGateway(SMSGatewaySettings settings)
        {
            switch ((ESMSGateway)settings.GatewayCode)
            {
            case ESMSGateway.Esendex: return(new Esendex(settings));

            default: return(null);
            }
        }
Exemplo n.º 2
0
 public Esendex(SMSGatewaySettings settings)
 {
     Settings = settings;
 }