Пример #1
0
 //DELETE
 public async Task <string> DeleteProcessRevision(int aProcessId, int aProcessRevId) //This will return the response from the API in string format.
 {
     return(await DataAccessGeneric.HttpDeleteRequest(Config["APIAddress"] + "api/processes/DeleteProcessRevision/" + aProcessId + "/" + aProcessRevId, _httpContextAccessor.HttpContext));
 }