Beispiel #1
0
        MvcFrameworkSettings IMvcApplication.Configure()
        {
            var db = new TurshiaDbContext();

            db.Database.Migrate();
            return(new MvcFrameworkSettings());
        }
Beispiel #2
0
 public TaskService()
 {
     this.context = new TurshiaDbContext();
 }
Beispiel #3
0
 public ReportService()
 {
     this.context = new TurshiaDbContext();
 }
Beispiel #4
0
        public UserService(IHashService hashService)
        {
            this.context = new TurshiaDbContext();

            this.hashService = hashService;
        }