public UserProfileServiceImpl(IUserProfileRepository userRepo, IMapper mapper,
                               IModificationHistoryRepository historyRepo)
 {
     this._mapper   = mapper;
     this._userRepo = userRepo;
     _historyRepo   = historyRepo;
 }
 public OfficeServiceImpl(IOfficeRepository officeRepo, IModificationHistoryRepository modificationRepo, IMapper mapper)
 {
     this._officeRepo       = officeRepo;
     this._modificationRepo = modificationRepo;
     this._mapper           = mapper;
 }