Is there a way to receive two parameters as an array in an HTTP action, like List `abc` and List `xyz`, and then use a model class?
public class ItemAndChecque
{
public List<SaleItem> saleitem { get; set; }
public List<itemChecqe> itemchecq { get; set; }
}
public IHttpActionResult TowArrayValue(List<ItemAndChecque> abc)
I have tried multiple solutions but have not been successful. Can anyone provide a solution?