...
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 | ||
---|---|---|
| ||
using MTOA.BLL.Interfaces; int myServiceRequestId = 12345 int myServiceId = 123; int myOrganizationId = 222323; _serviceRequestManager.ValidateByOrganization(myServiceIdRequestId, myOrganizationId, myServiceId); |
...