Пример #1
0
        public long Insert(Question_Info data)
        {
            long newID = 0;

            try
            {
                newID = new Question_Repo().Insert(data);
            }
            catch (Exception ex)
            {
                log.Exception(ex);
            }
            return(newID);
        }
Пример #2
0
 public Question_Processor()
 {
     _db = new Question_Repo();
 }