public CommunicationControllerTest()
 {
     IUnitOfWork uow = new UnitOfWork();
     _controller = new CommunicationController(uow);
 }
 public AccountControllerTest()
 {
     IUnitOfWork uow = new UnitOfWork();
     _controller = new AccountController(uow);
 }
 public FeatureControllerTest()
 {
     IUnitOfWork uow = new UnitOfWork();
     _controller = new FeatureController(uow);
 }
 public ProjectControllerTest()
 {
     IUnitOfWork uow = new UnitOfWork();
     _controller = new ProjectController(uow);
 }
 public ExperianceController()
 {
     IUnitOfWork uow = new UnitOfWork();
     _controller = new ExperienceController(uow);
 }