/// <summary>
 /// The Order resource represents your order to complete a background check on a specific Candidate, with your choice of search package and zero or more optional search additions.
 /// </summary>
 /// <param name="input"></param>
 /// <returns></returns>
 public static Task <Order> PlaceOrderAsync(OrderInput input)
 {
     return(AccurateCrudOperations.CreateAsync <OrderInput, Order>("order", input));
 }
 /// <summary>
 /// This is used create a new candidate to use in any number of background check orders and searches.
 /// The candidate can be created with a minimum set of information, and additional information can be added via API later,
 /// or in the INTERACTIVE workflow, the applicant may add the needed personal information directly through a secure web form.
 /// </summary>
 /// <param name="input"></param>
 /// <returns></returns>
 public static Task <Candidate> CreateCandidateAsync(CandidateInput input)
 {
     return(AccurateCrudOperations.CreateAsync <CandidateInput, Candidate>("candidate", input));
 }