예제 #1
0
        public void Update(int IdHematologia, int IdAdmision, string Grupo, string Factor, string Pai, string DDebil, string Observaciones, int?IdUsuarioRegistro, DateTime?FechaRegistro)
        {
            BdsHematologium item = new BdsHematologium();

            item.MarkOld();
            item.IsLoaded = true;

            item.IdHematologia = IdHematologia;

            item.IdAdmision = IdAdmision;

            item.Grupo = Grupo;

            item.Factor = Factor;

            item.Pai = Pai;

            item.DDebil = DDebil;

            item.Observaciones = Observaciones;

            item.IdUsuarioRegistro = IdUsuarioRegistro;

            item.FechaRegistro = FechaRegistro;

            item.Save(UserName);
        }
예제 #2
0
 public bool Destroy(object IdHematologia)
 {
     return(BdsHematologium.Destroy(IdHematologia) == 1);
 }
예제 #3
0
 public bool Delete(object IdHematologia)
 {
     return(BdsHematologium.Delete(IdHematologia) == 1);
 }