示例#1
0
 public RFQController()
 {
     _RFQSerivce = new RFQService();
     dropDown    = new BusinessDropDownList();
 }
示例#2
0
 public ManageRoleController()
 {
     _UserRoleMasterService = new UserRoleMasterService();
     dropDown = new BusinessDropDownList();
 }
示例#3
0
 public EmployeeController()
 {
     _EmployeeSerivce = new EmployeeService();
     dropDown         = new BusinessDropDownList();
 }
示例#4
0
 public SubMenuController()//ISubMenuService _ISMService)
 {
     // _SMService = _ISMService;
     _SMService = new SubMenuService();
     dropDown   = new BusinessDropDownList();
 }
示例#5
0
 public BidController()
 {
     _BidSerivce = new BidService();
     dropDown    = new BusinessDropDownList();
 }
示例#6
0
 public static List <SelectListItem> DDLGetSuppliers(this BusinessDropDownList d, string supp)
 {
     //List<SelectListItem> SuppliersList = BusinessDropDownList.GetSuppliers(supp);
     return(d.GetSuppliers(supp));
 }
示例#7
0
 public static List <SelectListItem> DDLGetRFQNOs(this BusinessDropDownList d, int suppid)
 {
     // List<SelectListItem> RFQNOsList = BusinessDropDownList.GetRFQNOs(suppid);
     return(d.GetRFQNOs(suppid));
 }
示例#8
0
 public static List <SelectListItem> DDLGetUsers(this BusinessDropDownList d, int id)
 {
     //List<SelectListItem> userList = BusinessDropDownList.GetUsers(id);
     return(d.GetUsers(id));
 }
示例#9
0
 public static List <SelectListItem> DDLGetRoles(this BusinessDropDownList d)
 {
     //List<SelectListItem> RoleList = BusinessDropDownList.GetRoles();
     return(d.GetRoles());
 }
示例#10
0
 public static List <SelectListItem> DDLGetDesignation(this BusinessDropDownList d)
 {
     // List<SelectListItem> DesList = BusinessDropDownList.GetDesignation();
     return(d.GetDesignation());
 }
示例#11
0
 public static List <SelectListItem> DDLGetTax(this BusinessDropDownList d)
 {
     //List<SelectListItem> TaxList = BusinessDropDownList.GetTax();
     return(d.GetTax());
 }
示例#12
0
 public static List <SelectListItem> DDLGetMainMenus(this BusinessDropDownList d)
 {
     // List<SelectListItem> mainMenuList = BusinessDropDownList.GetMainMenus();
     return(d.GetMainMenus());
 }
示例#13
0
        //-----item list for auto complete

        public static List <SelectListItem> DDLGetItems(this BusinessDropDownList d, string itemname)
        {
            //  List<SelectListItem> ItemList = BusinessDropDownList.GetItems(itemTerm);
            return(d.GetItems(itemname));
        }
示例#14
0
 public ItemMasterController()
 {
     _ItemSerivce = new ItemMasterSerivce();
     dropDown     = new BusinessDropDownList();
 }