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