public TechnologistPresenter(ITechnologistView technologistView, IContract technologistContract)
 {
     this.technologistView = technologistView;
     this.technologistContract = technologistContract;
 }
 public void Initialize()
 {
     mocktechnologistOrdersView = Substitute.For<ITechnologistView>();
     mockContract = Substitute.For<IContract>();
     presentor = new TechnologistPresenter(mocktechnologistOrdersView, mockContract);
 }