Esempio n. 1
0
 public static DataTable GetFlowFieldById(object[] param)
 {
     FlowFieldDAL flowFieldDal = new FlowFieldDAL();
     return flowFieldDal.GetFlowFieldById(param);
 }
Esempio n. 2
0
 public static bool IsStyleInUse(string StyleID)
 {
     FlowFieldDAL flowFieldDal = new FlowFieldDAL();
     return flowFieldDal.IsStyleInUse(StyleID);
 }
Esempio n. 3
0
 public static string getAutoNumber(object[] param, string outParameterName)
 {
     FlowFieldDAL flowFieldDal = new FlowFieldDAL();
     return flowFieldDal.getAutoNumber(param, outParameterName);
 }