asp.net - WCF Services - splitting code into multiple classes -
asp.net - WCF Services - splitting code into multiple classes - i'm looking @ developing wcf service first time, bit confused. say i've got windows application going phone call web service, service going phone call our info methods retrieve , save data. now, illustration have 2 classes in our solution, client , product. methods within service have go same class file (e.g. myservice.svc), or can split several classes replicating main info layer, i.e. customer.cs , product.cs. if can split, how these called within windows forms application? each class different end point? at moment can access methods within main class (e.g. myservice.svc), can't see of methods in other classes, though have attributed them "servicecontract" , "operationcontract". i have feeling i'm missing simple somewhere, not sure what. i grateful if nice person point me in direction of tutorial on doing this, every tutorial i've found includes single class ...