예제 #1
0
        // protected KTMContext Context;

        public ReviewService()
        {
            this.data = new KTMData();
            //this.Context=new KTMContext();
        }
예제 #2
0
 public NewsController(IKTMData data)
     : base(data)
 {
 }
예제 #3
0
 public NewsController(IKTMData data)
     : base(data)
 {
     this.service = new NewsService();
 }
예제 #4
0
 public RatingsController(IKTMData data)
     : base(data)
 {
     this.service = new RatingsService();
 }
예제 #5
0
 public ChatService()
 {
     this.data = new KTMData();
 }
예제 #6
0
 public ContactService()
 {
     this.data = new KTMData();
 }
예제 #7
0
 public MotorcyclesController(IKTMData data)
     : base(data)
 {
     this.service = new MotorcycleService();
 }
예제 #8
0
 public HomeController(IKTMData data)
     : base(data)
 {
     this.service = new HomeService();
 }
예제 #9
0
 public ReviewsController(IKTMData data)
     : base(data)
 {
     this.service = new ReviewService();
 }
예제 #10
0
        //  private KTMContext Context;

        public MotorcycleService()
        {
            this.data = new KTMData();
            //  this.Context=new KTMContext();
        }
예제 #11
0
 public CategoriesService()
 {
     this.data = new KTMData();
 }
예제 #12
0
 public MotorcyclesController(IKTMData data)
     : base(data)
 {
 }
예제 #13
0
 protected Controller(IKTMData data)
 {
     this.Data = data;
 }
예제 #14
0
 public RatingsService()
 {
     this.data = new KTMData();
 }
예제 #15
0
 public NewsService()
 {
     this.data = new KTMData();
 }
예제 #16
0
 public CategoriesController(IKTMData data)
     : base(data)
 {
     this.service = new CategoriesService();
 }
예제 #17
0
 public ContactController(IKTMData data)
     : base(data)
 {
     this.service = new ContactService();
 }
예제 #18
0
 public HomeService()
 {
     this.data = new KTMData();
 }