public CategoryManageForm()
 {
     InitializeComponent();
     this.Text = "类别管理";
     this.service = new Service.ServiceImpl();
     initListView();
 }
        public BrandManageForm()
        {
            InitializeComponent();
            this.Text = this.resource.getMsg("brand_manage");

            this.service = new Service.ServiceImpl();
            initListView();
        }
Beispiel #3
0
 public BrandForm()
 {
     InitializeComponent();
     this.service = new Service.ServiceImpl();
     init();
 }
Beispiel #4
0
 public Client(Service.IService service)
 {
     this.service = service;
 }
 public CategoryForm()
 {
     InitializeComponent();
     this.service = new Service.ServiceImpl();
     init();
 }
 public ClientServiceAdapter(Service.IService service)
 {
     this.service = service;
 }