Пример #1
0
 public CodeService(ICodeServices codeServices, IGenericServices <Presentation> presentationServices, IServiceable webApp, IContentProvider <Presentation> contentProvider)
 {
     _codeServices         = codeServices;
     _presentationServices = presentationServices;
     _webApp          = webApp;
     _contentProvider = contentProvider;
 }
Пример #2
0
 public PresentationsController(IGenericServices <Presentation> codeServices)
 {
     _codeServices = codeServices;
 }
Пример #3
0
 public CodeServiceWeb(ICodeServices codeServices, IGenericServices <Presentation> presentationServices, IContentProvider <Presentation> contentProvider)
 {
     _codeServices         = codeServices;
     _presentationServices = presentationServices;
     _contentProvider      = contentProvider;
 }
Пример #4
0
 public ShoppingCartController(IGenericServices <ShoppingCartDto> genericServices)
 {
     this.genericServices = genericServices;
 }