// To pass 'Program Lead' data in ProgramLeadDAL Data Access Layer to show selected ProgramLeadId records
 public DataTable SelectProgramLeadID(int ProgramLeadId, int LoggedInUser, string Ret)
 {
     ProgramLeadDAL ProgramLeadDAL = new ProgramLeadDAL();
     try
     {
         return ProgramLeadDAL.SelectProgramLeadID(ProgramLeadId, LoggedInUser, Ret);
     }
     catch
     {
         throw;
     }
     finally
     {
         ProgramLeadDAL = null;
     }
 }
 // To pass 'Program Lead' data in ProgramLeadDAL Data Access Layer to show Active and Inactive type records
 public DataTable LoadAllProgramLead(int LoggedInUser, string Ret)
 {
     ProgramLeadDAL ProgramLeadDAL = new ProgramLeadDAL();
     try
     {
         return ProgramLeadDAL.LoadAllProgramLead(LoggedInUser, Ret);
     }
     catch
     {
         throw;
     }
     finally
     {
         ProgramLeadDAL = null;
     }
 }
 //  To pass 'Program Lead' data in ProgramLeadDAL Data Access Layer for insertion
 public int InsertProgramLead(int UserID, bool IsActive, int LoginUser, string Ret)
 {
     ProgramLeadDAL ProgramLeadDAL = new ProgramLeadDAL();
     try
     {
         return ProgramLeadDAL.InsertProgramLead(UserID, IsActive, LoginUser, Ret);
     }
     catch
     {
         throw;
     }
     finally
     {
         ProgramLeadDAL = null;
     }
 }
Example #4
0
    // To pass 'Program Lead' data in ProgramLeadDAL Data Access Layer to show selected ProgramLeadId records
    public DataTable SelectProgramLeadID(int ProgramLeadId, int LoggedInUser, string Ret)
    {
        ProgramLeadDAL ProgramLeadDAL = new ProgramLeadDAL();

        try
        {
            return(ProgramLeadDAL.SelectProgramLeadID(ProgramLeadId, LoggedInUser, Ret));
        }
        catch
        {
            throw;
        }
        finally
        {
            ProgramLeadDAL = null;
        }
    }
Example #5
0
    // To pass 'Program Lead' data in ProgramLeadDAL Data Access Layer to show Active and Inactive type records
    public DataTable LoadAllProgramLead(int LoggedInUser, string Ret)
    {
        ProgramLeadDAL ProgramLeadDAL = new ProgramLeadDAL();

        try
        {
            return(ProgramLeadDAL.LoadAllProgramLead(LoggedInUser, Ret));
        }
        catch
        {
            throw;
        }
        finally
        {
            ProgramLeadDAL = null;
        }
    }
Example #6
0
    // To pass 'Program Lead' data in ProgramLeadDAL Data Access Layer for updation
    public int UpdateProgramLead(int ProgramLeadId, bool IsActive, int LoginUser, string Ret)
    {
        ProgramLeadDAL ProgramLeadDAL = new ProgramLeadDAL();

        try
        {
            return(ProgramLeadDAL.UpdateProgramLead(ProgramLeadId, IsActive, LoginUser, Ret));
        }
        catch
        {
            throw;
        }
        finally
        {
            ProgramLeadDAL = null;
        }
    }
Example #7
0
    //  To pass 'Program Lead' data in ProgramLeadDAL Data Access Layer for insertion
    public int InsertProgramLead(int UserID, bool IsActive, int LoginUser, string Ret)
    {
        ProgramLeadDAL ProgramLeadDAL = new ProgramLeadDAL();

        try
        {
            return(ProgramLeadDAL.InsertProgramLead(UserID, IsActive, LoginUser, Ret));
        }
        catch
        {
            throw;
        }
        finally
        {
            ProgramLeadDAL = null;
        }
    }
 // To pass 'Program Lead' data in ProgramLeadDAL Data Access Layer for updation
 public int UpdateProgramLead(int ProgramLeadId, bool IsActive, int LoginUser, string Ret)
 {
     ProgramLeadDAL ProgramLeadDAL = new ProgramLeadDAL();
     try
     {
         return ProgramLeadDAL.UpdateProgramLead(ProgramLeadId, IsActive, LoginUser, Ret);
     }
     catch
     {
         throw;
     }
     finally
     {
         ProgramLeadDAL = null;
     }
 }