Пример #1
0
 public static void Insert(int idGoal, int idMonth)
 {
     DatabaseDao.Insert(ConstantValue.GoalOfMonth, new List <string> {
         "IDGoal", "IDMonth"
     }, new List <object> {
         idGoal, idMonth
     });
 }
Пример #2
0
 public static void Insert(int idGoalOfMonth, int idDay)
 {
     DatabaseDao.Insert(ConstantValue.GoalOfDay, new List <string> {
         "IDGoalOfMonth", "idDay"
     }, new List <object> {
         idGoalOfMonth, idDay
     });
 }
Пример #3
0
 public static void Insert(string name)
 {
     DatabaseDao.Insert(ConstantValue.Goal, new List <string> {
         "Name"
     }, new List <object> {
         name
     });
 }