29 lines
806 B
C#
29 lines
806 B
C#
using data;
|
|
using data.RemoteData.RemoteDataBase;
|
|
using data.Repository;
|
|
using domain.Service;
|
|
using domain.UseCase;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Presence.Desktop.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Presence.Desktop.DI
|
|
{
|
|
public static class ServiceColletionExtensions
|
|
{
|
|
public static void AddCommonService(this IServiceCollection collection)
|
|
{
|
|
collection
|
|
.AddDbContext<RemoteDatabaseContext>()
|
|
.AddSingleton<IGroupRepository, SQLGroupRepositoryImpl>()
|
|
.AddTransient<IGroupUseCase, GroupService>()
|
|
.AddTransient<GroupViewModel>();
|
|
}
|
|
}
|
|
}
|