Question about the Patterns in Action application.
If I am using this within a project and will not ever use WCF can I eliminate a lot of this?
For example can I remove "ServiceContract", "OperationContract", "DataMember", and "DataContract" annotations from IActionService and Messages?
Also, can I remove the Request/Response?
Can I also remove the DataTransferObjects (DTOs) from the service layer as well?
Thanks
Dennis