Esempio n. 1
0
        public UserController(IUserFacadeService facadeService)
        {
            if (facadeService == null)
                throw new Exception(" facade service can not be null");

            this.FacadeService = facadeService;
        }
Esempio n. 2
0
 public UserController()
 {
     this.facedeService = new UserFacadeService();
 }