andrebaltieri / Flunt

Validations and Notifications
https://github.com/andrebaltieri/flunt
MIT License
626 stars 162 forks source link

Dúvida #96

Closed cristianormoraes closed 3 years ago

cristianormoraes commented 3 years ago

Se eu executar o código abaixo:

public class Customer : CustomNotifiable { ... }

public class Seller: CustomNotifiable { ... }

var seller= new Seller(); var customer = new Customer();

AddNotification(new CustomNotification("Chave", "Valor"));

Como a biblioteca identifica de qual objeto está adicionando essa notificação?

Abs

andrebaltieri commented 3 years ago

Ele sempre vai adicionar as notificações na instância. A classe é apenas um molde para o objeto. Quando você você instancia Customer, você tem um Customer, quando instancia Seller tem um Seller. As notificações ficarão nos respectivos objetos!