ab56a9bcf7
SVN-Revision: r240
37 lines
857 B
C#
37 lines
857 B
C#
using Lskj.Business;
|
|
using Lskj.Model;
|
|
using Lskj.Util;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Lskj.PubProductSmart
|
|
{
|
|
/// <summary>
|
|
/// 单据模版入口
|
|
/// </summary>
|
|
public class DllBaseClass : IForm
|
|
{
|
|
public DllBaseClass()
|
|
{
|
|
|
|
}
|
|
public DllBaseClass(string[] obj)
|
|
{
|
|
try
|
|
{
|
|
DynamicProductSmartModel model = new DynamicProductSmartModel(obj);
|
|
FrmMain main = new FrmMain(model);
|
|
this.SubForm = main;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogUtil.WriteError("Lskj.PubProductSmart.dll--参数错误-->" + obj.ToString(), ex);
|
|
}
|
|
}
|
|
public Form SubForm { get; set; }
|
|
}
|
|
}
|