How to provide global functionality in multi-user database app

Posted by Mike B on Stack Overflow See other posts from Stack Overflow or by Mike B
Published on 2010-03-08T06:25:14Z Indexed on 2010/03/08 6:36 UTC
Read the original article Hit count: 183

Filed under:
|
|

I have been building a multi-user database application (in C#/WPF 4.0) that manages tasks for all employees of a company. I now need to add some functionality such as sending an email reminder to someone when a critical task is due. How should this be done? Obviously I don’t want every instance of the program to be performing this function (Heh each user would get 10+ emails).

Should I add the capability to the application as a "Mode" and then run a copy on the database server in this mode or would it be better to create a new app altogether to perform "Global" type tasks? Is there a better way?

© Stack Overflow or respective owner

Related posts about best-practices

Related posts about beginner