Add project files.
This commit is contained in:
		
							
								
								
									
										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); | ||||
|  | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin