Hello everybody,
today I want to leave short note on how to override and call CreatePaymentProc method of Acumatica which I discovered today with Naveen from Kensium.
My favorite way of overriding methods in Acuamtica with usage of Action and passing there parameters doesn't work. That is because...
Hello everybody.
Today I want to give some demo.
using System;
using System.Diagnostics;
namespace StackOverflowQuest
{
class Program
{
struct StructTest
{
public string TestString { get; set; }
//public override bool Equals(object obj)...
Hello everybody,
Imagine following scenario. You have some code in base class, which you need to change. How to do it. For this purpose you can use PXOverride attribute.
See the following code:
public class YourExtension : PXGraphExtension<SomeBasicGraph>
{
[PXOverride]
public v...