Example #1
0
 public static SectionLabelValue GetSectionLabelValueByID(int id)
 {
     SectionLabelValue sectionLabelValue = new SectionLabelValue();
     SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();
     sectionLabelValue = sqlSectionLabelValueProvider.GetSectionLabelValueByID(id);
     return sectionLabelValue;
 }
Example #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;
 }
Example #3
0
 public static List<SectionLabelValue> GetAllSectionLabelValues()
 {
     List<SectionLabelValue> sectionLabelValues = new List<SectionLabelValue>();
     SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();
     sectionLabelValues = sqlSectionLabelValueProvider.GetAllSectionLabelValues();
     return sectionLabelValues;
 }
Example #4
0
    public static SectionLabelValue GetSectionLabelValueByID(int id)
    {
        SectionLabelValue            sectionLabelValue            = new SectionLabelValue();
        SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();

        sectionLabelValue = sqlSectionLabelValueProvider.GetSectionLabelValueByID(id);
        return(sectionLabelValue);
    }
Example #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);
    }
Example #6
0
    public static List <SectionLabelValue> GetAllSectionLabelValues()
    {
        List <SectionLabelValue>     sectionLabelValues           = new List <SectionLabelValue>();
        SqlSectionLabelValueProvider sqlSectionLabelValueProvider = new SqlSectionLabelValueProvider();

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

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

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

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

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