예제 #1
0
        public virtual bool Delete(int id)
        {
            using (var db = new FbConnection(ConnectionString))
            {
                var entity = GetById(id);

                if (entity == null)
                {
                    throw new Exception("Registro não encontrado");
                }

                return(db.Delete(entity));
            }
        }