Ejemplo n.º 1
0
 public TasksService(NhSessionDb nhSessionDb)
 {
     _nhSessionDb = nhSessionDb;
 }
Ejemplo n.º 2
0
        public TodosController()
        {
            var nhSessionDb = new NhSessionDb(App.ConnectionString);

            tasksService = new TasksService(nhSessionDb);
        }