public ContactUsServiceImpl(ContactUsRepository contactUsRepository)
 {
     repository = contactUsRepository;
 }
 public void SetUp()
 {
     testDataHelper = new TestDataHelper();
     contactUsRepository = new ContactUsRepository();
     savedContactUs = testDataHelper.CreateContactUs(new ContactUs {Name = "test",Email = "test",Comments = "test"});
 }