https://github.com/adessoturkey-dotnet/medesso
Custom Mediator and CQRS Library
https://github.com/adessoturkey-dotnet/medesso
Last synced: 10 months ago
JSON representation
Custom Mediator and CQRS Library
- Host: GitHub
- URL: https://github.com/adessoturkey-dotnet/medesso
- Owner: adessoTurkey-dotNET
- License: mit
- Created: 2023-01-20T11:58:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-21T10:39:23.000Z (over 3 years ago)
- Last Synced: 2025-04-05T00:11:14.395Z (about 1 year ago)
- Language: C#
- Size: 44.9 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Medesso
      
##### Medesso is a customized library inspired by MediatR library. We develop and use it in line with our needs.
### How To Install
Install with Nuget:
```sh
install-package Medesso
```
NET Core command line:
```sh
dotnet add package Medesso
```
# Configuration
```sh
var assemblies = GetAssemblies();
builder.Services.AddMedesso(assemblies);
static Assembly[] GetAssemblies()
{
var path = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
return Directory
.GetFiles(path, "Medesso.Sample.*.dll", SearchOption.TopDirectoryOnly)
.Select(AssemblyLoadContext.Default.LoadFromAssemblyPath)
.ToArray();
}
```
## Features:
- ##### Mediator implementation in .NET
- ##### Dependency-free in-process messaging.
## Registers:
- ##### IMedessoMediator
- ##### IMedessoQueryHandler
- ##### IMedessoCommandHandler
- ##### IMedessoRequestPreProcessor
- ##### IMedessoRequestPostProcessor
## License:
Distributed under the MIT License. See LICENSE.md for more information.
## Contact:
- ###### Umit Akinci - umit__akinci@hotmail.com - [](https://www.linkedin.com/in/%C3%BCmit-ak%C4%B1nc%C4%B1-080733120/) [](https://github.com/UmitAkinci)
- ###### Devran Canikli - devrancanikli@outlook.com - [](https://www.linkedin.com/in/devrancanikli/) [](https://github.com/devrancanikli)