27 lines
761 B
C#
27 lines
761 B
C#
|
using data;
|
|||
|
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, SQLGroupRepository>()
|
|||
|
.AddTransient<IGroupUseCase, GroupService>()
|
|||
|
.AddTransient<MainWindowViewModel>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|