Exemple #1
0
        public bool Insert(Administration item)
        {
            try
            {
                getDatalayer = new LiteDbAdministrationDataMapper();
                if (item != null)
                {
                    getDatalayer.Insert(item);
                }

                return(true);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message.ToString());
            }
        }