follow same pattern as core framework

This commit is contained in:
sbwalker
2025-08-11 17:10:58 -04:00
parent 64b8b5d3c8
commit bf932719b2
5 changed files with 24 additions and 33 deletions

View File

@ -1,18 +0,0 @@
using System.Collections.Generic;
using System.Threading.Tasks;
namespace [Owner].Module.[Module].Services
{
public interface I[Module]Service
{
Task<List<Models.[Module]>> Get[Module]sAsync(int ModuleId);
Task<Models.[Module]> Get[Module]Async(int [Module]Id, int ModuleId);
Task<Models.[Module]> Add[Module]Async(Models.[Module] [Module]);
Task<Models.[Module]> Update[Module]Async(Models.[Module] [Module]);
Task Delete[Module]Async(int [Module]Id, int ModuleId);
}
}