public void Insert(decimal SemanasGestacion, decimal L, decimal M, decimal S, decimal C3, decimal C10, decimal C50, decimal C90, decimal C97) { AprCentilesIMCEdadGestacional item = new AprCentilesIMCEdadGestacional(); item.SemanasGestacion = SemanasGestacion; item.L = L; item.M = M; item.S = S; item.C3 = C3; item.C10 = C10; item.C50 = C50; item.C90 = C90; item.C97 = C97; item.Save(UserName); }
public void Update(int Id, decimal SemanasGestacion, decimal L, decimal M, decimal S, decimal C3, decimal C10, decimal C50, decimal C90, decimal C97) { AprCentilesIMCEdadGestacional item = new AprCentilesIMCEdadGestacional(); item.MarkOld(); item.IsLoaded = true; item.Id = Id; item.SemanasGestacion = SemanasGestacion; item.L = L; item.M = M; item.S = S; item.C3 = C3; item.C10 = C10; item.C50 = C50; item.C90 = C90; item.C97 = C97; item.Save(UserName); }
public bool Destroy(object Id) { return(AprCentilesIMCEdadGestacional.Destroy(Id) == 1); }