private BindingList <WarehouseType> GetWarehouseTypes(string companyID) { return(new BindingList <WarehouseType>(_serviceAgent.GetWarehouseTypes(companyID).ToList())); }
private BindingList <WarehouseType> GetWarehouseTypes(string companyID) { BindingList <WarehouseType> itemTypeList = new BindingList <WarehouseType>(_serviceAgent.GetWarehouseTypes(companyID).ToList()); Dirty = false; AllowCommit = false; return(itemTypeList); }