Exemplo n.º 1
0
        public List <T> FindList <T>(BipAction action, string serviceName, string methodName, object[] args)
        {
            List <T> list = new List <T>();

            list.AddRange(this.Find <T>(action, serviceName, methodName, args));
            return(list);
        }
Exemplo n.º 2
0
 public DlgOrgEdit(SysOrganization organization, EditType type, BipAction action)
     : this(organization, type)
 {
     this.Action = action;
 }
Exemplo n.º 3
0
 public DlgPostEmployeeAdd(BipAction action)
 {
     this.Action = action;
     InitializeComponent();
 }
Exemplo n.º 4
0
 public DlgAccountEdit(BipAction action)
 {
     this.Action = action;
     InitializeComponent();
 }
Exemplo n.º 5
0
 public DlgEmployeeEdit(SysEmployee employee, EditType type, BipAction action)
     : this(employee, type)
 {
     this.Action = action;
 }
Exemplo n.º 6
0
 public IEnumerable <T> Find <T>(BipAction action, string serviceName, string methodName, object[] args)
 {
     return((action.Excute(serviceName, methodName, args) as ArrayList).Cast <T>());
 }
Exemplo n.º 7
0
 public T FindOne <T>(BipAction action, string serviceName, string methodName, object[] args)
 {
     return((T)action.Excute(serviceName, methodName, args));
 }
Exemplo n.º 8
0
 public DlgRoleEdit(SysRole role, EditType type, BipAction action)
     : this(role, type)
 {
     this.Action = action;
 }
Exemplo n.º 9
0
 public Dictionary(BipAction action)
 {
     this.action = action;
 }
Exemplo n.º 10
0
 public DlgPostEdit(SysPost post, EditType type, BipAction action) : this(post, type)
 {
     this.Action = action;
 }