I am designing a data driven windows application, to be fed not by the underlying SQL Server but by a WCF service, so as to allow access locally and remotely.
Said WCF provides specific features for the retrieval of users, stock, customers etc, and actually performs the ADO operations, along the following lines:
[OperationContract]
UserAdapter GetUserByWindowsIdentity(string Domain, string Account);
Which returns one of:
[DataContract]
public class UserAdapter
{
[DataMember]
public int? ID;
[DataMember]
public string Domain;
[DataMember]
public string Account;
[DataMember]
public string Name;
}
Rather than have specific references to my WCF client in my WPF front end application, I should like to abstract some further functionality in another layer in between - for example, validating a users logon via their WindowsIdentity belongs neither in the data layer, nor the presentation layer, but an intermediary business logic layer.
I am uncertain how to go about this. I'd prefer in my presentation layer to be able to do something along the lines of:
User.Login();
and for the User object to abstract the same properties like Domain, Account, etc, as per my UserAdapter class, but I can't subclass this because I can't downcast the objects returned by my data layer.
Any suggestions where I can take this, including 'chuck it out' would be very much appreciated. Thank you all!