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); } } }