Пример #1
0
 public static bool CheckRendezVous(Guid IdVeto, DateTime laDate)
 {
     return(DALRendezVous.CheckRDV(IdVeto, laDate));
 }
Пример #2
0
        // Delete

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