Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • serviceRequestId : The service id to verify.

  • organizationId : The organization id that should match the service idrequest should belong to.

  • serviceId : Id of the service used to validate the requests.

...

Code Block
languagec#
using MTOA.BLL.Interfaces;

int myServiceRequestId = 12345
int myServiceId = 123;
int myOrganizationId = 123323;

_serviceRequestManager.ValidateByOrganization(myServiceIdRequestId, myOrganizationId, myServiceId);
        

...