Add project files.
This commit is contained in:
		
							
								
								
									
										13
									
								
								Core.Blueprint.DAL.Service/Contracts/IBlueprintService.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								Core.Blueprint.DAL.Service/Contracts/IBlueprintService.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | ||||
| using Core.Blueprint.Domain.Entities; | ||||
|  | ||||
| namespace Core.Blueprint.DAL.Service.Contracts | ||||
| { | ||||
|     public interface IBlueprintService | ||||
|     { | ||||
|         ValueTask<BlueprintCollection> CreateAsync(BlueprintCollection entity); | ||||
|         ValueTask<bool> DeleteAsync(string id); | ||||
|         ValueTask<IEnumerable<BlueprintCollection>> GetAllAsync(); | ||||
|         ValueTask<BlueprintCollection> GetByIdAsync(string id); | ||||
|         Task<bool> UpdateAsync(string id, BlueprintCollection entity); | ||||
|     } | ||||
| } | ||||
							
								
								
									
										11
									
								
								Core.Blueprint.DAL.Service/Contracts/ISampleImageService.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								Core.Blueprint.DAL.Service/Contracts/ISampleImageService.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| using Core.Blueprint.Domain.Dtos; | ||||
|  | ||||
| namespace Core.Blueprint.DAL.Service.Contracts | ||||
| { | ||||
|     public interface ISampleImageService | ||||
|     { | ||||
|         IAsyncEnumerable<ImageUrlDto> GetAllUrl(); | ||||
|         Task<ImageUrlDto> GetFirstUrl(); | ||||
|         Task<ImageUrlDto> GetUploadUrl(); | ||||
|     } | ||||
| } | ||||
							
								
								
									
										14
									
								
								Core.Blueprint.DAL.Service/Contracts/ISampleItemService.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								Core.Blueprint.DAL.Service/Contracts/ISampleItemService.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| using Core.Blueprint.Domain.Entities; | ||||
|  | ||||
| namespace Core.Blueprint.DAL.Service.Contracts | ||||
| { | ||||
|     public interface ISampleItemService  | ||||
|     { | ||||
|         ValueTask<SampleItem> CreateAsync(SampleItem entity); | ||||
|         ValueTask<bool> DeleteAsync(string id); | ||||
|         ValueTask<IEnumerable<SampleItem>> GetAllAsync(); | ||||
|         ValueTask<SampleItem> GetByIdAsync(string id); | ||||
|         Task<bool> UpdateAsync(string id, SampleItem entity); | ||||
|  | ||||
|     } | ||||
| } | ||||
							
								
								
									
										11
									
								
								Core.Blueprint.DAL.Service/Contracts/ISecretService.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								Core.Blueprint.DAL.Service/Contracts/ISecretService.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| using Core.Blueprint.Domain.Entities; | ||||
|  | ||||
| namespace Core.Blueprint.DAL.Service.Contracts | ||||
| { | ||||
|     public interface ISecretService | ||||
|     { | ||||
|         Task<Secret> GetSecret(string secretName, CancellationToken cancellationToken); | ||||
|         Task SetSecret(string secretName, string secretValue, CancellationToken cancellationToken); | ||||
|         Task RemoveSecret(string secretName, CancellationToken cancellationToken); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin