Where or how I can find all the documentation of all the possible methods I can call with Erp.Contracts.SalesOrderSvcContract
For example:
using (Erp.Contracts.SalesOrderSvcContract soSvc = Ice.Assemblies.ServiceRenderer.GetService<Erp.Contracts.SalesOrderSvcContract>(Db))
{
soSvc.CloseRelease(ttOrderRel_xRow.OrderNum, ttOrderRel_xRow.OrderLine, ttOrderRel_xRow.OrderRelNum);
}
Therefore what else can I can call soSvc. i.e I know I can call soSvc.CloseRelease(OrderNum, OrderLine,OrderRelNum) and the parameters for each of them .