Exemple #1
0
        public QueryResult GetProductStepPrice(ProductStepPriceReq filter)
        {
            int totalCount;
            var dataTable = ProductStepPriceProcessor.GetProductStepPrice(filter.VendorSysNo,
                                                                          filter.ProductSysNo,
                                                                          filter.PagingInfo.PageIndex,
                                                                          filter.PagingInfo.PageSize,
                                                                          out totalCount);

            return(new QueryResult()
            {
                Data = dataTable,
                TotalCount = totalCount
            });
        }
Exemple #2
0
        public List <ProductStepPriceInfo> GetProductStepPricebyProductSysNo(int ProductSysNo)
        {
            var list = ProductStepPriceProcessor.GetProductStepPricebyProductSysNo(ProductSysNo);

            return(list);
        }
Exemple #3
0
 public int DeleteProductStepPrice(List <int> sysNos)
 {
     return(ProductStepPriceProcessor.DeleteProductStepPrice(sysNos));
 }
Exemple #4
0
 public int CreateProductStepPrice(ProductStepPriceInfo entity)
 {
     return(ProductStepPriceProcessor.CreateProductStepPrice(entity));
 }