Ejemplo n.º 1
0
 public static SectionLabelValue GetSectionLabelValueByID(int id)
 {
     SectionLabelValue sectionLabelValue = new SectionLabelValue();
     SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();
     sectionLabelValue = sqlSectionLabelValueProvider.GetSectionLabelValueByID(id);
     return sectionLabelValue;
 }
Ejemplo n.º 2
0
 public static List<SectionLabelValue> GetAllSectionLabelValuesByCarePlanDateTimeID(int CarePlanDateTimeID)
 {
     List<SectionLabelValue> sectionLabelValues = new List<SectionLabelValue>();
     SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();
     sectionLabelValues = sqlSectionLabelValueProvider.GetAllSectionLabelValuesByCarePlanDateTimeID(CarePlanDateTimeID);
     return sectionLabelValues;
 }
Ejemplo n.º 3
0
 public static List<SectionLabelValue> GetAllSectionLabelValues()
 {
     List<SectionLabelValue> sectionLabelValues = new List<SectionLabelValue>();
     SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();
     sectionLabelValues = sqlSectionLabelValueProvider.GetAllSectionLabelValues();
     return sectionLabelValues;
 }
Ejemplo n.º 4
0
    public static SectionLabelValue GetSectionLabelValueByID(int id)
    {
        SectionLabelValue            sectionLabelValue            = new SectionLabelValue();
        SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();

        sectionLabelValue = sqlSectionLabelValueProvider.GetSectionLabelValueByID(id);
        return(sectionLabelValue);
    }
Ejemplo n.º 5
0
    public static List <SectionLabelValue> GetAllSectionLabelValuesByCarePlanDateTimeID(int CarePlanDateTimeID)
    {
        List <SectionLabelValue>     sectionLabelValues           = new List <SectionLabelValue>();
        SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();

        sectionLabelValues = sqlSectionLabelValueProvider.GetAllSectionLabelValuesByCarePlanDateTimeID(CarePlanDateTimeID);
        return(sectionLabelValues);
    }
Ejemplo n.º 6
0
    public static List <SectionLabelValue> GetAllSectionLabelValues()
    {
        List <SectionLabelValue>     sectionLabelValues           = new List <SectionLabelValue>();
        SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();

        sectionLabelValues = sqlSectionLabelValueProvider.GetAllSectionLabelValues();
        return(sectionLabelValues);
    }
Ejemplo n.º 7
0
    public static bool DeleteSectionLabelValueByCarePlanDateTimeID(string CarePlanDateTimeID)
    {
        SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();

        return(sqlSectionLabelValueProvider.DeleteSectionLabelValueByCarePlanDateTimeID(CarePlanDateTimeID));
    }
Ejemplo n.º 8
0
    public static bool DeleteSectionLabelValue(int sectionLabelValueID)
    {
        SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();

        return(sqlSectionLabelValueProvider.DeleteSectionLabelValue(sectionLabelValueID));
    }
Ejemplo n.º 9
0
    public static bool UpdateSectionLabelValue(SectionLabelValue sectionLabelValue)
    {
        SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();

        return(sqlSectionLabelValueProvider.UpdateSectionLabelValue(sectionLabelValue));
    }
Ejemplo n.º 10
0
    public static int InsertSectionLabelValue(SectionLabelValue sectionLabelValue)
    {
        SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();

        return(sqlSectionLabelValueProvider.InsertSectionLabelValue(sectionLabelValue));
    }
Ejemplo n.º 11
0
 public static bool UpdateSectionLabelValue(SectionLabelValue sectionLabelValue)
 {
     SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();
     return sqlSectionLabelValueProvider.UpdateSectionLabelValue(sectionLabelValue);
 }
Ejemplo n.º 12
0
 public static int InsertSectionLabelValue(SectionLabelValue sectionLabelValue)
 {
     SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();
     return sqlSectionLabelValueProvider.InsertSectionLabelValue(sectionLabelValue);
 }
Ejemplo n.º 13
0
 public static bool DeleteSectionLabelValueByCarePlanDateTimeID(string CarePlanDateTimeID)
 {
     SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();
     return sqlSectionLabelValueProvider.DeleteSectionLabelValueByCarePlanDateTimeID(CarePlanDateTimeID);
 }
Ejemplo n.º 14
0
 public static bool DeleteSectionLabelValue(int sectionLabelValueID)
 {
     SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();
     return sqlSectionLabelValueProvider.DeleteSectionLabelValue(sectionLabelValueID);
 }