예제 #1
0
        public int Add(List <Inventory> stockOutList)
        {
            int rowOccurred = 0;

            if (stockOutList == null)
            {
                throw new Exception("Sorry, No Item Found!");
            }
            foreach (var item in stockOutList)
            {
                bool isInserted = _repository.AddStockOut(item);
                if (isInserted)
                {
                    rowOccurred++;
                }
            }
            return(rowOccurred);
        }