예제 #1
0
        public UserController(IUserFacadeService facadeService)
        {
            if (facadeService == null)
                throw new Exception(" facade service can not be null");

            this.FacadeService = facadeService;
        }
예제 #2
0
 public UserController()
 {
     this.facedeService = new UserFacadeService();
 }