Example #1
0
        public bool InsertStatData(List <Stat> stats)
        {
            bool returnState = false;

            List <Stat> statList = null;

            try
            {
                statList    = stats;
                returnState = iStat.InsertStatData(statList);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message + "\nFrom Business layer");
            }

            return(returnState);
        }