I've created the following web service
> [WebMethod(EnableSession = true)]
>
> public Transaction<Employee> GetEmployee(string Fname, string Lname, int eid)
> {
>
> return _service.GetEmployee(Fname, Lname, apartmentTypeId, eid);
> }
I want to make the last parameter optional. Currently, I'm i'm not submitting the eid, its giving an error. How can I make the last parameter optional in this service?