You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
610 B

using CustomerOnlineV2.Repository.Helper;
using System.Data;
namespace CustomerOnlineV2.Business.Helper
{
public class HelperBusiness
{
HelperRepository _repo;
public HelperBusiness()
{
_repo = new HelperRepository();
}
public DataTable GetDropDownList(string flag, string userName = "")
{
return _repo.GetDropDownList(flag, userName);
}
public DataTable GetDropDownListStatic(string typeId, string userName = "")
{
return _repo.GetDropDownListStatic(typeId, userName);
}
}
}