I’ve created a custom services API for Dynamics 365 FO in Visual Studio 2022. However, I’m encountering an issue where the method from my service class is not found.
I have a service class that includes a method called processTransaction. When I try to set this method in the service object property, it doesn’t appear in the list of available methods.
Additionally, when I build the project, I receive the following error:
( Error Path: [AxService/APIOrderService/ExternalName]:Property cannot be empty. )
public final class OrderService
{
public OrderedResult processTransaction(AllOrderContract _contract)
{
/// code ...
}
}