Skip to content

Instantly share code, notes, and snippets.

@ierhalim
Last active May 14, 2020 19:52
Show Gist options
  • Save ierhalim/b769deb60bbebd0ea92ca59bbc3125d3 to your computer and use it in GitHub Desktop.
Save ierhalim/b769deb60bbebd0ea92ca59bbc3125d3 to your computer and use it in GitHub Desktop.
namespace ServiceAdapter.ExternalAccess.BlumeCorparation
{
public class ExampleService : IExampleService
{
public async Task<IEnumerable<ExampleOutputModel>> Get()
{
// TODO: BlumeCorpartion'ın sağladığı servis verisini ExampleOutputModel'e mapleyip döndür.
}
}
}
namespace ServiceAdapter.ExtenralAccess.Default
{
public class ExampleService : IExampleService
{
public async Task<IEnumerable<ExampleOutputModel>> Get()
{
// TODO: Müşterilere sağladığımız dökümandaki veriyi ExampleOutputModel'e mapleyip döndür.
}
}
}
namespace ServiceAdapter.ExtenralAccess.MassiveDynamic
{
public class ExampleService : IExampleService
{
public async Task<IEnumerable<ExampleOutputModel>> Get()
{
// TODO: MassiveDynamic'ın sağladığı servis verisini ExampleOutputModel'e mapleyip döndür.
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment