Add tenant services, change id by _id and include delete endpoint for all entities
This commit is contained in:
		| @@ -0,0 +1,13 @@ | ||||
| using Lib.Architecture.BuildingBlocks; | ||||
|  | ||||
| namespace Core.Thalos.Application.UseCases.Tenants.Input | ||||
| { | ||||
|     public class DeleteTenantRequest : Notificator, ICommand | ||||
|     { | ||||
|         public string _Id { get; set; } | ||||
|         public bool Validate() | ||||
|         { | ||||
|             return _Id != null; | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin