public string DeleteForgetCard(string empId, DateTime?workDate)
 {
     try
     {
         _db.SP_FORGETCARD_DELETE(empId, workDate);
         return("Ok");
     }
     catch (Exception ex)
     {
         return(ex.InnerException.ToString());
     }
 }