Ejemplo n.º 1
0
 public static bool CheckRendezVous(Guid IdVeto, DateTime laDate)
 {
     return(DALRendezVous.CheckRDV(IdVeto, laDate));
 }
Ejemplo n.º 2
0
        // Delete

        public static bool DeleteRDV(RendezVous pRDV)
        {
            return(DALRendezVous.DeleteRDV(pRDV));
        }
Ejemplo n.º 3
0
 public static List <RendezVous> GetAgendaByClient(Guid IdClient, DateTime laDate)
 {
     return(DALRendezVous.GetAgendaByClient(IdClient, laDate));
 }
Ejemplo n.º 4
0
 public static List <RendezVous> GetAgendaByDate(DateTime laDate)
 {
     return(DALRendezVous.GetAgendaByDate(laDate));
 }
Ejemplo n.º 5
0
 // Read
 public static List <RendezVous> GetAgendaByVeterinaire(Guid IdVeto, DateTime laDate)
 {
     return(DALRendezVous.GetAgendaByVeterinaire(IdVeto, laDate));
 }
Ejemplo n.º 6
0
 // Create
 public static bool CreateRDV(RendezVous pRDV)
 {
     return(DALRendezVous.AddRDV(pRDV));
 }