Exemplo n.º 1
0
 public IList <GoodsInventoryEntity> Query(DateRangeCondition condition, PagerInfo pageInfo)
 {
     return(GoodsInventoryRepository.Query(condition, pageInfo));
 }
Exemplo n.º 2
0
 public IList <GoodsInventoryEntity> Query(DateRangeCondition condition)
 {
     return(GoodsInventoryRepository.Query(condition));
 }
Exemplo n.º 3
0
 public IList <ProductInventoryEntity> QueryProductInventory(ProductInventoryCondition condition)
 {
     return(GoodsInventoryRepository.QueryProductInventory(condition));
 }
Exemplo n.º 4
0
 public IList <GoodsInventoryRuntimeEntity> GetRuntime(string applyId, string hospitalId)
 {
     return(GoodsInventoryRepository.GetRuntime(applyId, hospitalId));
 }
Exemplo n.º 5
0
 public GoodsInventoryEntity QueryEarlyExpiredDateInventory(string productId, string storeroomId, DateTime expiredDate, string hospitalId)
 {
     return(GoodsInventoryRepository.QueryEarlyExpiredDateInventory(productId, storeroomId, expiredDate, hospitalId));
 }
Exemplo n.º 6
0
 public int SumLeft(string applyId, string productId, string hospitalId)
 {
     return(GoodsInventoryRepository.SumLeft(applyId, productId, hospitalId));
 }
Exemplo n.º 7
0
        //public GoodsInventoryEntity Get(string productId, string hospitalId)
        //{
        //    return GoodsInventoryRepository.Get(productId, hospitalId);
        //}

        //public IList<GoodsInventoryEntity> Get(IList<string> productIds, string hospitalId)
        //{
        //    return GoodsInventoryRepository.Get(productIds, hospitalId);
        //}

        public int CountLeft(string productId, string storeroomId, string hospitalId)
        {
            return(GoodsInventoryRepository.CountLeft(productId, storeroomId, hospitalId));
        }