vote up 1 vote down star
2

Hi, I am having problems with implementing Observer pattern in my project. The project has to be made as MVC in C#, like a Windows application.
In my domain model I have for example Country class and Country repository. I have a Country controller and views for seeing all countries(a list on a form), adding new country, and editing existing country.
I don't know how many views will have to know about changes connected with changing Country. The thing is I have to use Observer pattern. And on the web I can find only examlpes when a Subject is Country and Observer is a form that is editing a country and all the examples are in console application.

I need that all my forms that have lists of countries know about adding new country, not just editing existing ones. How am I supposed to do that, should I make a repository a Subject?

flag

3 Answers

vote up 1 vote down check

You could create a 'ManageCountry' task, which lets you edit / add countries. This task could have an event 'CountryChanged', where other views can subscribe to.

When you modify a country, or create a new country, you raise the event, and subscribers can react to it. You just have to make sure that the event you raise, uses some custom EventArgs so that you can pass the Country object that has modified to the eventhandler.

What are you using to implement an MVC app ? Are you using some kind of framework for it ?

link|flag
It is a project for one class on college. I can't use any frameworks, have to do it in Visual Studio. I also have to have unit tests and NHibernate has to be in charge for persistance. <br/> I will definitely have more questions about this, it has to be made "by the book". – gljivar Jan 25 at 13:14
So, you cannot make use of MVCSharp for instance. That's a framework which allows you to easily create MVC (or rather, MVP) apps. – Frederik Gheysels Jan 25 at 13:16
No, I can't. We were doing models, views and controllers as separate projects and prof. shown some basics how to work with that. However, he didn't show how to implement Observer pattern, nor how to work with delegates and events. I will definitely see what is MVCSharp for future usage. – gljivar Jan 25 at 13:27
vote up 0 vote down

In C# (or .NET generally) you can use events and delegates which are special observer/monitor/listener implementations.

I don't know about DDD, but I would add an "NewCountryAdded"-event or "CountryListChanged"-event or something like that.

link|flag
To which object would you add that events? To repository? – gljivar Jan 25 at 13:02
To the repository, I guess. Its hard to tell without knowing your complete class structure and usage... – EricSchaefer Jan 26 at 11:17
vote up 0 vote down

Hmm, to me it sounds that you should make a repository a subject, so that the repository works as a publisher to the forms. Try this and let us know if it worked out.

regards, cordellcp3

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.