public void Test_RequestForSlot()
        {
            string Res     = Tsr.RequestForSlot(519562);
            string TestRes = GetResult(TEmpno);

            Assert.AreEqual(string.IsNullOrEmpty(Res), false);
            Assert.AreEqual(false, string.IsNullOrEmpty(TestRes));
        }
 public string RequestForSlot(int EmpNo)
 {
     try
     {
         return(ISR.RequestForSlot(EmpNo));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }