If this is in a LAN and will never be anywhere else - don't add an unnecessary WCF layer on top.
If you anticipate outside sources might want access to that data some day - then it might make sense to use a WCF DataService or something like that to expose the data.
WCF and Dataservices always add some extra layer, some extra processing, and thus cost some performance. If you only ever have 5 local users (in your company LAN) - there's really no compelling reason to use a WCF service for that, in my opinion. Just use a good data access technology (Linq-to-SQL, Entity Framework, NHibernate) and access that database directly.
An extra WCF service layer doesn't buy you any benefits in this scenario - so don't make things unnecessarily more complicated than they have to be.