Exemple #1
0
        public TracComm(string username, string password)
        {
            this.username = username;
            this.password = password;

            this.ticketClient             = XmlRpcProxyGen.Create <ITicketClient>();
            this.ticketClient.Credentials = new NetworkCredential(this.username, this.password);
        }
Exemple #2
0
 public TicketService(ITicketClient ticketClient)
 {
     _ticketClient = ticketClient;
 }