المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Software Process Change Best Practices



C# Programming
06-19-2009, 01:01 PM
We have a software developed using DotNet 2.0. The problem we are facing is there are certain areas where customers require changes according to their business needs. These change in turn makes us to change the code and cater their requirements. Lets take an example of employee entrance at their office:

Client 1:
Activity 1. Employees swipe their card and enter.
Activity 2. Have tea/coffee.
Activity 3. Start work.

Client 2:
Activity 1. Employee enter their names and time-in manually.
Activity 2. Start Work.

Client 3:
Activity 1. Employees do not perform any check-in.
Activity 2. Have Breakfast.
Activity 3. Start Work.

My question is that if there is any approach where we can handle these changing requirements. The activities involved in these requirements like the example above do change for every customer. These activities can either increase/decrease in number or change entirely.

Thanks.