Exemplo n.º 1
0
        public async Task <IActionResult> Create(Module obj)
        {
            var result = await _moduRepo.CreateAsync(obj);

            return(Ok(result));
        }
Exemplo n.º 2
0
 public async Task <bool> CreateAsync(Module entity, string dataBaseName = null)
 {
     return(await moduleRepository.CreateAsync(entity, dataBaseName));
 }