Example #1
0
 public SponsorsViewModel(
     ISponsorsService service,
     IServiceCaller serviceCaller) : base(serviceCaller)
 {
     this.service = service;
     Sponsors     = new ObservableCollection <Sponsor>();
 }
Example #2
0
 public SponsorsController(ISponsorsService sponsorsService)
 {
     this.sponsorsService = sponsorsService;
 }