start backoffice services (transition from api)

This commit is contained in:
2020-11-18 01:26:12 +01:00
parent 49585ac60d
commit de32cfb6ec
6 changed files with 388 additions and 25 deletions
@@ -2,6 +2,7 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using zero.Core.Api;
using zero.Core.Backoffice;
using zero.Core.Entities;
using zero.Core.Messages;
using zero.Core.Options;
@@ -71,6 +72,7 @@ namespace zero.Web.Defaults
services.AddTransient<IApplicationsApi, ApplicationsApi>();
services.AddTransient<ICountriesApi, CountriesApi>();
services.AddTransient<ICountriesBackofficeService, CountriesBackofficeService>();
services.AddTransient<ILanguagesApi, LanguagesApi>();
services.AddTransient<ITranslationsApi, TranslationsApi>();
services.AddTransient<IUserApi, UserApi>();