BlingBag.SampleConsoleApp.FakeDomainLayer.Events.TheNameChanged.TheNameChanged C# (CSharp) Méthode

TheNameChanged() public méthode

public TheNameChanged ( Account account, string oldName, string newName ) : BlingBag.SampleConsoleApp.FakeDomainLayer.Entities
account BlingBag.SampleConsoleApp.FakeDomainLayer.Entities.Account
oldName string
newName string
Résultat BlingBag.SampleConsoleApp.FakeDomainLayer.Entities
        public TheNameChanged(Account account, string oldName, string newName)
        {
            Account = account;
            OldName = oldName;
            NewName = newName;
        }
TheNameChanged