<?php

include_once(dirname(__FILE__).'/../../Base/Controller.php');
include_once(dirname(__FILE__).'/../../Application/View/Page.php');
include_once(dirname(__FILE__).'/View.php');

class NewsController extends Controller
{
  function Add()
  {
    $Page = new PageView($this->System);
    $View = new NewsView($this->System);
    return($Page->GetOutput($View->Add()));
  }    
  
  function AddFinish()
  {
    $Page = new PageView($this->System);
    $View = new NewsView($this->System);
    return($Page->GetOutput($View->AddFinish()));
  }    
}
