public CardHash(PagarMeService service) { if (service == null) { service = PagarMeService.GetDefaultService(); } _service = service; }
internal PagarMeRequest(PagarMeService service, string method, string path) { if (service == null) { service = PagarMeService.GetDefaultService(); } _service = service; Method = method; Path = path; Query = new List <Tuple <string, string> >(); Body = "{}"; }