Supplies user profile facade functionality.
Beispiel #1
0
 public MealController()
 {
     //ready for IOC config.
     UserProfileFacade profileFacade = new UserProfileFacade();
     m_serviceLayer = new ServiceLayerImpl(profileFacade);
     log.Debug("[MealController] c'tor");
 }
 public RestaurantController()
 {
     UserProfileFacade profileFacade = new UserProfileFacade(ApplicationName.Plateful);
     m_serviceLayer = new ServiceLayerImpl(profileFacade);
     m_imageService = new ImageServices();
 }
Beispiel #3
0
 public ImageServices()
 {
     m_backofficeServiceLayer = new ServiceLayerImpl();
     UserProfileFacade profileFacade = new UserProfileFacade();
     m_serviceLayer = new ServiceLayerImpl(profileFacade);
 }
 public RestaurantController()
 {
     UserProfileFacade profileFacade = new UserProfileFacade();
     m_serviceLayer = new ServiceLayerImpl(profileFacade);
     m_imageService = new ImageServices();
 }
 public ServiceLayerImpl(UserProfileFacade userProfilefacade)
 {
     log.DebugFormat("[ServiceLayerImpl] C'tor userProfileFacade={0}", userProfilefacade);
     m_userProfile = userProfilefacade;
 }
Beispiel #6
0
 public ImageServices()
 {
     //m_backofficeServiceLayer = new ServiceLayerImpl();
     m_backofficeServiceLayer = new BackOfficeServiceLayerImpl();
     UserProfileFacade profileFacade = new UserProfileFacade(ApplicationName.BackOffice);
     m_serviceLayer = new ServiceLayerImpl(profileFacade);
 }