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); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin