Beispiel #1
0
 public SqlDataReader getClerkName1()
 {
     DLClerk dlc = new DLClerk();
     try
     {
         SqlDataReader dr = dlc.getClerkName1();
         return dr;
     }
     catch
     {
         throw;
     }
     finally
     {
         //dlc = null;
     }
 }
Beispiel #2
0
 public SqlDataReader getClerkDetailsForUpdate1(int intClerkId)
 {
     DLClerk dlsr = new DLClerk();
     try
     {
         SqlDataReader dr = dlsr.getClerkDetailsForUpdate1( intClerkId);
         return dr;
     }
     catch
     {
         throw;
     }
     finally
     {
         dlsr = null;
     }
 }
Beispiel #3
0
        public SqlDataReader getClerkDetails1()
        {
            DLClerk dlc = new DLClerk();
            try
            {
                SqlDataReader dr = dlc.getClerkDetails1();
                return dr;
            }
            catch
            {
                throw;
            }
            finally
            {

            }
        }
Beispiel #4
0
 public SqlDataAdapter getClerk1(string strClerkName)
 {
     SqlDataAdapter da = new SqlDataAdapter();
     DLClerk dlc = new DLClerk();
     try
     {
         dlc.getClerk1(strClerkName);
         return da;
     }
     catch
     {
         throw;
     }
     finally
     {
         dlc = null;
     }
 }
Beispiel #5
0
 public SqlDataReader gridFillApproveClerk1(int intApprove)
 {
     DLClerk dlsr = new DLClerk();
     try
     {
         SqlDataReader dr = dlsr.gridFillApproveClerk1(intApprove);
         return dr;
     }
     catch
     {
         throw;
     }
     finally
     {
         //dlsr = null;
     }
 }
Beispiel #6
0
 public void updateClerk1(int intClerkId, string strAddress1, string strAddress2, string strAddress3, string strAddress4, string strTelephone, string strMobile, string strPanNo, string strEmailId, decimal decTDSRate, int intIsDeleted, int intApprove)
 {
     DLClerk dlc = new DLClerk();
     try
     {
         dlc.updateClerk1(intClerkId, strAddress1, strAddress2, strAddress3, strAddress4, strTelephone, strMobile, strPanNo, strEmailId, decTDSRate, intIsDeleted, intApprove);
     }
     catch
     {
         throw;
     }
     finally
     {
         dlc = null;
     }
 }
Beispiel #7
0
 public string saveClerk1(string strClerkName, string strAddress1, string strAddress2, string strAddress3, string strAddress4, string strTelephone, string strMobile, string strPanNo, string strEmailId, decimal decTDSRate, int intIsDeleted, int intApprove)
 {
     DLClerk dlc = new DLClerk();
     try
     {
         msg = dlc.saveClerk1(strClerkName, strAddress1, strAddress2, strAddress3, strAddress4, strTelephone, strMobile, strPanNo, strEmailId, decTDSRate, intIsDeleted, intApprove);
     }
     catch
     {
         throw;
     }
     finally
     {
         dlc = null;
     }
     return msg;
 }