Repository.PosisjonsService.Lagre C# (CSharp) Méthode

Lagre() protected méthode

protected Lagre ( DeltakerPosisjon posisjon ) : void
posisjon Database.Entities.DeltakerPosisjon
Résultat void
        protected virtual void Lagre(DeltakerPosisjon posisjon)
        {
            using (var context = _dataContextFactory.Create())
            {
                context.DeltakerPosisjoner.Add(posisjon);
                context.SaveChanges();
            }
        }