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)); }
public Task <SwaggerResponse> PuModifyPunchAsync(ModifyPunchAdminDto modifyPunchAdminDto) { throw new NotImplementedException(); }