Exemplo n.º 1
0
 public static bool Delete(PrescriptionSession prescSession)
 {
     return(PrescriptionSessionDAL.Delete(prescSession.PrescSessionId));
 }
Exemplo n.º 2
0
 public static int UpdateByPresc(PrescriptionSession prescSession)
 {
     prescSession.PrescriptionId = PrescriptionSessionDAL.UpdateByPresc(prescSession);
     return(prescSession.PrescriptionId);
 }
Exemplo n.º 3
0
        //


        public static List <PrescriptionSession> GetListByPrescription(int id)
        {
            return(PrescriptionSessionDAL.GetListByPrescription(id));
        }
Exemplo n.º 4
0
 public static int Insert(PrescriptionSession prescSession)
 {
     prescSession.PrescSessionId = PrescriptionSessionDAL.Insert(prescSession);
     return(prescSession.PrescriptionId);
 }
Exemplo n.º 5
0
 public static PrescriptionSession GetByPrescId(int id)
 {
     return(PrescriptionSessionDAL.GetByPrescId(id));
 }