Badges.Areas.Admin.Controllers.TitleController.TransferValues C# (CSharp) Method

TransferValues() private static method

Transfer editable values from source to destination
private static TransferValues ( Title source, Title destination ) : void
source Title
destination Title
return void
        private static void TransferValues(Title source, Title destination)
        {
            destination.Name = source.Name;
        }