Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have system being developed for an HR system. There are Accountant employees and Programmer employees. For the first month of joining the company, the employee is not given any role. One employee can be an Accountant and a programmer at the same time. I have a design shown by the following code.

Now, I need to enhance the system by implementing a new functionality:

Terminate all Accountants. (Terminate means set status of employee as IsActive = false). The issue is I cannot set all accountants directly as inactive without checking. I need to check whether he has got any other role.

How to remodel these classes in order to do the terminate function more natural OO ?

C# Code

List<Accountant> allAccountants =  Get All accountants from database

public class Employee
{
    public int EmpID { get; set; }
    public DateTime JoinedDate { get; set; }
    public int Salary { get; set; }
    public bool IsActive { get; set; }
}


public class Accountant : Employee
{
    public Employee EmployeeData { get; set; }
}

public class Programmer : Employee
{
    public Employee EmployeeData { get; set; }
}

enter image description here

REFERENCE

  1. DDD Approach to Access External Information
  2. Prefer composition over inheritance?
  3. Inheritance vs enum properties in the domain model
  4. Entity Framework: Get Subclass objects in Repository
share|improve this question
The concept of termination (isActive) is for an employee; not for a role. Consider an employee with two roles. Though all accountants are terminated he will continue to be an active employee. – Lijo Aug 1 '12 at 12:39

2 Answers

up vote 4 down vote accepted

To use the structure you are using you would need multiple inheritance for someone who is an accountant and a programmer, besides new roles might be added to the system, and that doesn't exist in C#. You should consider a different design. One possibility:

public class Employee
{
    ...
    IList<Role> Roles;
    bool isActive;

    public void TerminateRole(Role role)
    {
        Roles.Remove(role);
        if(Roles.Count == 0)
        {
            isActive = false;
        }
    }
}

public class Role
{
    abstract string Name { get;}
}

public class ProgrammerRole : Role
{
    override string Name { get { return "Programmer"; } }
}

Then you can subclass Role for each type, and you can decide to terminate just one role, or all of them.

share|improve this answer
So what should happen when someone with two roles is terminated? – AlexDev Aug 1 '12 at 12:39
The employee should NOT be terminated. He will continue as active. One record in EmployeeRole should be deleted. – Lijo Aug 1 '12 at 12:40
2  
Edited. Another option would be to have isActive as a readonly property like bool isActive { get { return Roles.Count > 0; } } but that won't be mapped to the database. – AlexDev Aug 1 '12 at 12:47
Thanks. The updated answer makes sense. Is it possible to achive this model using EF Database First? How it would be? – Lijo Aug 1 '12 at 16:36
Probably since it's a simple mapping, but I haven't used EF. Would an example with fluent nhibernate be useful? – AlexDev Aug 1 '12 at 20:28
public abstract class AbstractEmployee
{
    ...
    public abstract bool IsActiveAccountant { get; set; }
    public abstract bool IsActiveProgrammer { get; set; }
    public bool IsActive() { get { return bitwise or of all roles; } }
}

public class NewEmployee : AbstractEmployee
{
    ...
    public override bool IsActiveAccountant { get; set; }
    public override bool IsActiveProgrammer { get; set; }
}

public class Programmer : AbstractEmployee
{
    ...
    public override bool IsActiveAccountant { get; set; }
    public override bool IsActiveProgrammer { get; set; }
}

Cons:

  • with every new system-wide role added you have to modify classes

Pros:

  • you dont need to search for accountants
  • programmers can have empty implementation of IsActiveAccountant, because this role is inactive for them anyway
  • NewEmployee can have many roles at the same time

If overhead from introducing new roles is significant, I would stick with searching

share|improve this answer
This doesn't simulate a real world scenario. I don't like IsActiveAccountant inside Programmer class. – Lijo Aug 1 '12 at 13:06
"The issue is I cannot set all accountants directly as inactive without checking" - you would do checking in real world would not you? :) I was merely trying to solve your issue with having to check (even though personally I dont see it an issue). Having limited list of roles on an object and removing one of them implies check. My apologies if your actual question was not about removing a need to do check – Roman Saveljev Aug 1 '12 at 13:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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