public void MyTestInitialize()
        {
            _currentProject = new Project
            {
                _id          = ObjectId.GenerateNewId().ToString(),
                Name         = "testProjectName",
                Region       = "testProjectRegion",
                InvestorUser = "",
                Address      = new Address {
                    Lat = 52, Lng = 53
                },
                WorkflowState = new Workflow
                {
                    History      = new List <History>(),
                    CurrentState = ProjectWorkflow.State.Open
                }
            };
            _projects = new List <Project> {
                _currentProject
            };

            _repository = new MockMongoRepository(_projects);


            _userNotification     = new Mock <IUserNotification>();
            _adminNotification    = new Mock <IAdminNotification>();
            _investorNotification = new Mock <IInvestorNotification>();
            _userName             = "******";
            _roles = new List <string>();
        }