コード例 #1
0
        public InicioContent()
        {
            InitializeComponent();

            _webHotel           = new WebViewHotel();
            _AlertaConfirmacion = new AlertaConfirmacion();

            FechaInicio.Text = String.Format("{0:dd/MM/yyyy}", DateTime.Today);
            FechaFinal.Text  = String.Format("{0:dd/MM/yyyy}", DateTime.Today.AddDays(1));
        }
コード例 #2
0
ファイル: hotel.xaml.cs プロジェクト: Abrancill0/City_Center
        public Hotel()
        {
            InitializeComponent();

            MainViewModel.GetInstance().Hotel = new HotelViewModel();

            FechaInicio.Text = String.Format("{0:dd/MM/yyyy}", DateTime.Today);
            FechaFinal.Text  = String.Format("{0:dd/MM/yyyy}", DateTime.Today.AddDays(1));

            _webHotel = new WebViewHotel();
        }
コード例 #3
0
 public DetalleHotel()
 {
     InitializeComponent();
     _webHotel = new WebViewHotel();
 }