Exemplo n.º 1
0
 public HomeController()
 {
     _context       = new GoSerbisyoDBContext();
     _services      = new ServicesAppService(_context);
     _serviceImages = new ServiceImagesAppService(_context);
     _membership    = new MembershipAppService();
     _message       = new MessagesAppService(_context);
 }
Exemplo n.º 2
0
 public ResultsController()
 {
     _context       = new GoSerbisyoDBContext();
     _services      = new ServicesAppService(_context);
     _serviceImages = new ServiceImagesAppService(_context);
     _membership    = new MembershipAppService();
     _ratings       = new ServiceRatingsAppService(_context);
     _report        = new ServiceReportsAppService(_context);
 }
Exemplo n.º 3
0
 public ServicesController(IServicesAppService servicesAppService)
 {
     _servicesAppService = servicesAppService;
 }