how to POST two strings?
- by Garrith
Im trying to create a POST method for my AddTagtoGroup
which looks like this (altho still confused as string group never seems to be used):
List<Group> Groups = new List<Group>();
List<Tag> tags = new List<Tag>();
public void AddTagtoGroup(string group, string tag)
{
var result = Groups.Where(n…