public void DelayRequested(int technicianId, int jobId)
 {
     SmartDispatchBL business = new SmartDispatchBL(new SQLRespository());
     business.DelayRequested(technicianId, jobId);
 }
 public void Test_DelayRequested()
 {
     ISmartDispatch dispathBL = new SmartDispatchBL(new SQLRespository());
     dispathBL.DelayRequested(1, 8);
     Assert.AreEqual(true, true);
 }