public abstract void UpdateHealthType(HealthTypeInfo objHealthType);
public abstract void DeleteHealthType(HealthTypeInfo objHealthType);
public abstract void AddHealthType(HealthTypeInfo objHealthType);
public void UpdateHealthType(HealthTypeInfo objHealthType) { DataProvider.Instance().UpdateHealthType(objHealthType); }
public void DeleteHealthType(HealthTypeInfo objHealthType) { DataProvider.Instance().DeleteHealthType(objHealthType); }
public void AddHealthType(HealthTypeInfo objHealthType) { DataProvider.Instance().AddHealthType(objHealthType); }
public override void DeleteHealthType(HealthTypeInfo objHealthType) { SqlHelper.ExecuteNonQuery(ConnectionString, GetFullyQualifiedName("HRM_HealthType"), objHealthType.id, objHealthType.name, objHealthType.isactive, 2); }