public ProductCompanyViewModel()
        {
            var Scope = Startup.Instance.provider.CreateScope();


            _productCompany           = new CatalogBrand();
            _repositoryProductCompany = Scope.ServiceProvider.GetRequiredService <IProductCompanyService>();
            ProductCompanies          = _repositoryProductCompany.GetAllProductCompanies();
            WireCommands();
        }
Пример #2
0
 public ProductCompanyController(IProductCompanyService productcompanyService)
 {
     _productcompanyService = productcompanyService;
 }