[HttpGet(\"{id:int}\")]
public VillaDTO GetVilla(int id)
{
return VillaStore.villasList.FirstOrDefault(u => u.Id == id);
}
Here i set id which type int and passed the int type id in GetVilla function.
[HttpGet(\"{id:int}\")] public VillaDTO GetVilla(int id) { return VillaStore.villasList.FirstOrDefault(u => u.Id == id); } Here i set id which type int and passed the int type id ...
0 Comments
Leave a Comment