You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BaseWebService should somehow get its information from BaseFacade
BaseWebService's functions:
IEnumerable GetCollection()/(context)
IEnumerable GetEntity(id)/(context)
void/T Save(T entity)
void/T Delete(T entity)
After all that implement CarWebService and ServiceBookLogWebService and make them inherit BaseWebService.
NOTE: The difference between the WebService and the Facade is that the WebService should work only with ViewModels and the Facade should work only with DbModels. The conversion from ViewModel to DbModel should be done in the WebService
The text was updated successfully, but these errors were encountered:
Game plan:
After all that implement CarWebService and ServiceBookLogWebService and make them inherit BaseWebService.
NOTE: The difference between the WebService and the Facade is that the WebService should work only with ViewModels and the Facade should work only with DbModels. The conversion from ViewModel to DbModel should be done in the WebService
The text was updated successfully, but these errors were encountered: