Exemple #1
0
        public int AddRNItem(RNItemList user)
        {
            int id = 0;

            try
            {
                id = _repository.AddRNItem(user);
            }

            catch (Exception ex)
            {
                throw ex;
            }
            return(id);
        }