Example #1
0
        public object Insert(Database database, SagaData poco)
        {
            var entity = SagaData.ConvertFromBase <TSagaData>(poco);

            return(database.Insert(entity));
        }
Example #2
0
        public int Update(Database database, SagaData poco)
        {
            var entity = SagaData.ConvertFromBase <TSagaData>(poco);

            return(database.Update(entity));
        }