public void SetUp()
 {
     mocker = new MockRepository();
     service = mocker.PartialMock<HarvestService>();
     harvestor = mocker.CreateMock<IHarvester>();
     scripter = mocker.CreateMock<ISqlScripter>();
 }
 public HarvestPocoService(HarvestConnection harvestConnection)
 {
     service = new HarvestService(harvestConnection);
 }