Service.cs 326 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using MyMoviesWPF.Models;
  6. namespace MyMoviesWPF.MVVM.ViewModel.Core
  7. {
  8. public static class Service
  9. {
  10. public static MyMoviesDBContext db = new MyMoviesDBContext();
  11. public static Movie movie { get; set; }
  12. }
  13. }