hi Iluvdotnetfunda ,
//create the object for particular class here
for example, if u r going to access a method that belongs to this class
AdminDAL
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using DAL;
namespace BAL
{
public class AdminBAL
{
AdminDAL objData=new AdminDAL();
public int Insert(string userName, string password, string superPassword, string userType, string adminDesc, bool active)
{
int i;
i=objData.Insert(userName, password, superPassword, userType, adminDesc, active);
return i;
}
}
i hope its help for u,
Regards
Kavi.n
Iluvdotnetfunda, if this helps please login to Mark As Answer. |
Reply | Alert Moderator