Possibility to eliminate simple rules?

I have several of these very simple rules:

rule "Switch Start"
when
	Item Switch_Start received command
then
	Command_Item.sendCommand("start")
end
rule "Switch Stop"
when
	Item Switch_Stop received command
then
	Command_Item.sendCommand("stop")
end

Is there a possibility that I can do without these simple rules and realize this directly in the item file, e.g. with the help of profiles?

I’m not sure if it’s possible by using profiles, but if you have a lot of short rules that is basically the same you can merge them into one rule. See for example:

A bit more information would help!
Are all rules doing a sendCommand to the same item(Command_Item)?
Shall the switch all act like a toggle ( i.e. no difference between ON and OFF)?

Yes, exactly. I use the Xiaomi Mi IO Binding. I want to send different commands (strings) to the item that is linked to the command channel.

The switches are only used to generate a command that executes the rule. It could look like this in the sitemap:

Switch item=Switch_Start mappings=[ON="Start"]
Switch item=Switch_Stop mappings=[ON="Stop"]

In this case I would use a single String item like:

String ActionItem "Action"

and present it as a switch on a sitemap with mappings like.

Switch item=ActionItem mappings=[start="Start", stop="Stop", whatever="MyAction"]

Additional mappings are possible!

Now use a single rule:

rule "Action"

when
    Item ActionItem received command
then 
        switch (receivedCommand) {
            case "start" :
                 Command_Item.sendCommand("start")
            case "stop" :
                 Command_Item.sendCommand("stop")
            case "whatever" : 
                 //Whatever needed!
        }
    ActionItem.postUpdate(NULL) //resets the selected switch position!
end