示例#1
0
 public static SectionTextValue GetSectionTextValueByID(int id)
 {
     SectionTextValue sectionTextValue = new SectionTextValue();
     SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();
     sectionTextValue = sqlSectionTextValueProvider.GetSectionTextValueByID(id);
     return sectionTextValue;
 }
示例#2
0
 public static List<SectionTextValue> GetAllSectionTextValues()
 {
     List<SectionTextValue> sectionTextValues = new List<SectionTextValue>();
     SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();
     sectionTextValues = sqlSectionTextValueProvider.GetAllSectionTextValues();
     return sectionTextValues;
 }
示例#3
0
 public static SectionTextValue GetSectionTextValueByCarePlanDateTimeID(int CarePlanDateTimeID)
 {
     SectionTextValue sectionTextValue = new SectionTextValue();
     SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();
     sectionTextValue = sqlSectionTextValueProvider.GetSectionTextValueByCarePlanDateTimeID(CarePlanDateTimeID);
     return sectionTextValue;
 }
示例#4
0
    public static SectionTextValue GetSectionTextValueByCarePlanDateTimeID(int CarePlanDateTimeID)
    {
        SectionTextValue            sectionTextValue            = new SectionTextValue();
        SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();

        sectionTextValue = sqlSectionTextValueProvider.GetSectionTextValueByCarePlanDateTimeID(CarePlanDateTimeID);
        return(sectionTextValue);
    }
示例#5
0
    public static SectionTextValue GetSectionTextValueByID(int id)
    {
        SectionTextValue            sectionTextValue            = new SectionTextValue();
        SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();

        sectionTextValue = sqlSectionTextValueProvider.GetSectionTextValueByID(id);
        return(sectionTextValue);
    }
示例#6
0
    public static List <SectionTextValue> GetAllSectionTextValues()
    {
        List <SectionTextValue>     sectionTextValues           = new List <SectionTextValue>();
        SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();

        sectionTextValues = sqlSectionTextValueProvider.GetAllSectionTextValues();
        return(sectionTextValues);
    }
示例#7
0
 public static bool UpdateSectionTextValue(SectionTextValue sectionTextValue)
 {
     SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();
     return sqlSectionTextValueProvider.UpdateSectionTextValue(sectionTextValue);
 }
示例#8
0
 public static int InsertSectionTextValue(SectionTextValue sectionTextValue)
 {
     SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();
     return sqlSectionTextValueProvider.InsertSectionTextValue(sectionTextValue);
 }
示例#9
0
 public static bool DeleteSectionTextValue(int sectionTextValueID)
 {
     SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();
     return sqlSectionTextValueProvider.DeleteSectionTextValue(sectionTextValueID);
 }
示例#10
0
    public static bool DeleteSectionTextValue(int sectionTextValueID)
    {
        SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();

        return(sqlSectionTextValueProvider.DeleteSectionTextValue(sectionTextValueID));
    }
示例#11
0
    public static bool UpdateSectionTextValue(SectionTextValue sectionTextValue)
    {
        SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();

        return(sqlSectionTextValueProvider.UpdateSectionTextValue(sectionTextValue));
    }
示例#12
0
    public static int InsertSectionTextValue(SectionTextValue sectionTextValue)
    {
        SqlSectionTextValueProvider sqlSectionTextValueProvider = new SqlSectionTextValueProvider();

        return(sqlSectionTextValueProvider.InsertSectionTextValue(sectionTextValue));
    }