public bool Guardar() { if (name != "") { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); return(C.InsertServicio(name)); } else { return(false); } }
public bool Insert_Profesional(int idprofesional) { if (id != 0) { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); return(C.InsertProfesionalServicio(idprofesional, id)); } else { return(false); } }
public static Servicio ObtenerServicioById(int Id) { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); DataRow dr = C.GetServicioById(Id); if (dr != null) { return(new Servicio(dr)); } else { return(null); } }
public static Servicio ObtenerUltimoServicio() { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); DataRow dr = C.GetLast(); if (dr != null) { return(new Servicio(dr)); } else { return(null); } }
public static ProfesionalServicio GetLast() { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); DataRow dr = C.GetLastProfesionalServicio(); if (dr != null) { ProfesionalServicio PS = new ProfesionalServicio(dr); return(PS); } else { return(null); } }
public static List <ProfesionalServicio> GetUsersByServicio(int IdServicio, int PortalId) { Conexiones.Con_Servicios CS = new Conexiones.Con_Servicios(); DataTable dt = CS.GetProfesionalesID(IdServicio); if (dt != null) { List <ProfesionalServicio> u = new List <ProfesionalServicio>(); foreach (DataRow a in dt.Rows) { u.Add(new ProfesionalServicio(a)); } return(u); } else { return(null); } }
public List <ProfesionalServicio> GetProfesionales(int PortalId) { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); DataTable DT = C.GetProfesionalesID(id); if (DT != null) { List <ProfesionalServicio> LU = new List <ProfesionalServicio>(); foreach (DataRow dr in DT.Rows) { LU.Add(new ProfesionalServicio(dr)); } return(LU); } else { return(null); } }
public static List <Servicio> ObtenerServiciosPorProfesional(int IdProfesional) { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); DataTable DT = C.GetServiciosByUser(IdProfesional); if (DT != null) { List <Servicio> LS = new List <Servicio>(); foreach (DataRow dr in DT.Rows) { LS.Add(Servicio.ObtenerServicioById(int.Parse(dr["IdServicio"].ToString()))); } return(LS); } else { return(null); } }
public static List <Servicio> ObtenerServicios() { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); DataTable DT = C.GetAll(); if (DT != null) { List <Servicio> LS = new List <Servicio>(); foreach (DataRow dr in DT.Rows) { LS.Add(new Servicio(dr)); } return(LS); } else { return(null); } }
public bool InsertServicio(int idservicio) { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); return(C.InsertProfesionalServicio(userid, idservicio)); }
public bool ExisteEnServicio(int IdServicio) { Conexiones.Con_Servicios S = new Conexiones.Con_Servicios(); return(S.ExisteEnServicio(IdServicio, USERID)); }
public static bool DeleteProfesionalServicioById(int ID) { Conexiones.Con_Servicios C = new Conexiones.Con_Servicios(); return(C.DeleteProfesionalServicioById(ID)); }