Repository.Import.MatchImport.ExcelMatch.Update C# (CSharp) Method

Update() public method

public Update ( Match match ) : void
match Database.Entities.Match
return void
            public void Update(Match match)
            {
                match.Navn = Navn;
                match.StartTid = StartTid;
                match.SluttTid = SluttTid;
                match.GeoboxNWLatitude = GeoboxNWLatitude;
                match.GeoboxNWLongitude = GeoboxNWLongitude;
                match.GeoboxSELatitude = GeoboxSELatitude;
                match.GeoboxSELongitude = GeoboxSELongitude;
            }
MatchImport.ExcelMatch