예제 #1
0
        protected void  Cale_SelectionChanged(object sender, EventArgs e)
        {
            string dia;

            dia = Cale.SelectedDate.ToShortDateString();
            List <HorariosDTO> turnos = HorariosService.GetAll(dia);

            Cmboxhs.DataSource = turnos;
            Cmboxhs.DataBind();
        }
예제 #2
0
 public MainViewModel()
 {
     _horarioService = new HorariosService();
     PreencherLista();
 }
예제 #3
0
 public HorariosViewModel()
 {
     _horarioService = new HorariosService();
 }