public ActionResult CreateAgencyInvestigatorCheck(
     [FromBody] AgencyInvestigatorCheck check)
 {
     return(_api2.CreateAgencyInvestigatorCheck(check));
 }
 public ObjectResult CreateAgencyInvestigatorCheck(AgencyInvestigatorCheck check)
 => HttpClient.Post(AGENCY_INVESTIGATOR_URL, check);
Exemple #3
0
 public AgencyInvestigatorCheck Post([FromBody] AgencyInvestigatorCheck check)
 {
     return(_repo.Create(check));
 }