0
    
    
        
                    sean.alford created
                    
                    
                    
                
                We need to build a service that will manage sequential numbers across multiple modules.
ISequentialNumberManager _sequentialNumberManager
// Get the next ticket number
Ticket.Number = await _sequentialNumberManager.GetNextAsync("TicketNumber");
Should we simply create a module without a UI, or is there a better best practice?
3 Answer(s)
- 
    0Hi, if it is a simple service and not use database,you can just create libary project , like volo.abp.automapper.
- 
    0@liangshiwei it will use a database to store the current seq number for a given entitiy. 
- 
    0Hi, You can refer the audit-loggin module. 
 
                                