Exemple #1
0
        public async Task <List <SystemDropdownProjection> > GetSystemDropDownProjection()
        {
            var query  = new GetSystemDropDownProjectionQuery();
            var result = await _queryProcessor.Process(query);

            return(result);
        }
Exemple #2
0
 public async Task <List <SystemDropdownProjection> > Handle(GetSystemDropDownProjectionQuery query)
 {
     return(await _context.SystemDropDownProjection.ToListAsync());
 }