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

  1. using CustomerOnlineV2.Repository.Helper;
  2. using System.Data;
  3. namespace CustomerOnlineV2.Business.Helper
  4. {
  5. public class HelperBusiness
  6. {
  7. HelperRepository _repo;
  8. public HelperBusiness()
  9. {
  10. _repo = new HelperRepository();
  11. }
  12. public DataTable GetDropDownList(string flag, string userName = "")
  13. {
  14. return _repo.GetDropDownList(flag, userName);
  15. }
  16. public DataTable GetDropDownListStatic(string typeId, string userName = "")
  17. {
  18. return _repo.GetDropDownListStatic(typeId, userName);
  19. }
  20. }
  21. }