Ejemplo n.º 1
0
        public async Task <IActionResult> PuModifyPunch([FromBody] ModifyPunchAdminDto modifyPunchAdminDto)
        {
            if (!ModelState.IsValid)
            {
                return(HandleInvalidModelState(ModelState));
            }
            var result = await _implementation.PuModifyPunchAsync(modifyPunchAdminDto).ConfigureAwait(false);

            return(ProcessResponse(result));
        }
Ejemplo n.º 2
0
 public Task <SwaggerResponse> PuModifyPunchAsync(ModifyPunchAdminDto modifyPunchAdminDto)
 {
     throw new NotImplementedException();
 }