Ejemplo n.º 1
0
 internal static object GetList(员工信息Filter filter)
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         return client.员工信息_GetList(filter);
     }
 }
Ejemplo n.º 2
0
 internal static int Remove(string 编码)
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         return client.门店信息_Delete(编码);
     }
 }
Ejemplo n.º 3
0
 internal static List<货品信息ViewModel> GetList(货品信息Filter filter)
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         return client.货品信息_GetList(filter);
     }
 }
Ejemplo n.º 4
0
 public static List<仓库ViewModel> GetList(仓库Filter filter = null)
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         return client.仓库信息_GetList(filter);
     }
 }
Ejemplo n.º 5
0
 internal static void Delete(string 门店信息编码)
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         client.门店信息_Delete(门店信息编码);
     }
 }
Ejemplo n.º 6
0
 internal static 门店EditModel GetEditModel(string code)
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         return client.门店信息_GetEditModelById(code);
     }
 }
Ejemplo n.º 7
0
 internal static string GetNewCode()
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         return client.门店信息_GetNewCode();
     }
 }
Ejemplo n.º 8
0
 internal static void Update(门店EditModel model)
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         client.门店信息_Update(model);
     }
 }
Ejemplo n.º 9
0
 internal static void AddNew(门店EditModel model)
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         client.门店信息_AddNew(model);
     }
 }
Ejemplo n.º 10
0
 public static List<门店ViewModel> GetList()
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         return client.门店信息_GetList();
     }
 }
Ejemplo n.º 11
0
 public static List<货品类别ViewModel> GetList()
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         return client.货品类别_GetList();
     }
 }
Ejemplo n.º 12
0
 private static string CreateNewCode()
 {
     using (var client = new BDKRWS.BDKRWSClient())
     {
         var newcode = client.仓库信息_GetNewCode();
         return newcode;
     }
 }