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

            tasksService = new TasksService(nhSessionDb);
        }