Exemplo n.º 1
0
 //  To pass 'Group' data in GroupDAL Data Access Layer for insertion
 public int InsertGroup(string GroupName ,string GroupDescription,bool Isactive,int LoginUser, string Ret)
 {
     GroupDAL GroupDAL = new GroupDAL();
     try
     {
         return GroupDAL.InsertGroup(GroupName,GroupDescription, Isactive, LoginUser,Ret);
     }
     catch
     {
         throw;
     }
     finally
     {
         GroupDAL = null;
     }
 }
Exemplo n.º 2
0
    //  To pass 'Group' data in GroupDAL Data Access Layer for insertion
    public int InsertGroup(string GroupName, string GroupDescription, bool Isactive, int LoginUser, string Ret)
    {
        GroupDAL GroupDAL = new GroupDAL();

        try
        {
            return(GroupDAL.InsertGroup(GroupName, GroupDescription, Isactive, LoginUser, Ret));
        }
        catch
        {
            throw;
        }
        finally
        {
            GroupDAL = null;
        }
    }
Exemplo n.º 3
0
 internal int InsertGroup(Inv_ProductGroup groupObj)
 {
     return(groupDal.InsertGroup(groupObj));
 }
Exemplo n.º 4
0
 public static int InsertGroup(string GroupName, int leadID, int CompanyID)
 {
     return(GroupDAL.InsertGroup(GroupName, leadID, CompanyID));
 }