Exemplo n.º 1
0
 public MandrillApi(string apiKey)
 {
     if (apiKey == null)
     {
         throw new ArgumentNullException(nameof(apiKey));
     }
     _request = new MandrillRequest(apiKey);
 }
Exemplo n.º 2
0
 private MandrillApi(MandrillRequest request)
 {
     _request = request;
 }