16 lines
262 B
C#
16 lines
262 B
C#
|
using iMESCIO.PIO.Plugin;
|
|||
|
using Microsoft.VisualBasic;
|
|||
|
|
|||
|
namespace MESPI_BusinessRule
|
|||
|
{
|
|||
|
|
|||
|
public class clsBusinessRule : IBusinessRule
|
|||
|
{
|
|||
|
|
|||
|
private string funBR_Test(Collection colParameters)
|
|||
|
{
|
|||
|
return "Pass";
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|