Example #1
0
 public SqlDataReader getEmpIdEmpGrid1(string strEmployeeCode)
 {
     DLProject dlsr = new DLProject();
        try
        {
        SqlDataReader dr = dlsr.getEmpIdEmpGrid1(strEmployeeCode);
        return dr;
        }
        catch
        {
        throw;
        }
        finally
        {
        dlsr = null;
        }
 }