Rock.Model.GroupService.AddNewFamilyAddress C# (CSharp) Method

AddNewFamilyAddress() private method

private AddNewFamilyAddress ( RockContext rockContext, Group family, string locationTypeGuid, string street1, string street2, string city, string state, string postalCode, string country, bool moveExistingToPrevious = false ) : void
rockContext Rock.Data.RockContext
family Group
locationTypeGuid string
street1 string
street2 string
city string
state string
postalCode string
country string
moveExistingToPrevious bool
return void
        public static void AddNewFamilyAddress( RockContext rockContext, Group family, string locationTypeGuid,
            string street1, string street2, string city, string state, string postalCode, string country, bool moveExistingToPrevious = false )
        {
            AddNewGroupAddress( rockContext, family, locationTypeGuid, street1, street2, city, state, postalCode, country, moveExistingToPrevious );
        }

Same methods

GroupService::AddNewFamilyAddress ( RockContext rockContext, Group family, string locationTypeGuid, Location location, bool moveExistingToPrevious = false ) : void
GroupService::AddNewFamilyAddress ( RockContext rockContext, Group family, string locationTypeGuid, int locationId, bool moveExistingToPrevious = false ) : void