Пример #1
0
        public void UpdatePackageStatus(int userID, int barCode, StockType stockType, int?receivingCenterID)
        {
            int currentCenterID = employeeLoginDao.GetEmployeeLoginDetail(userID).DistributionCenterID;

            packageDao.UpdatePackageStatus(userID, barCode, stockType, receivingCenterID, currentCenterID);
        }