public async Task <IActionResult> SetOverDraftLimit([FromBody] SetOverDraftLimitDTO model)
 {
     try
     {
         await _accountApplicationService.SetOverDraftLimitAsync(AccountId.With(model.AccountId), model.OverDraftLimit);
     }
     catch (Exception e)
     {
         return(BadRequest(new { Error = e.Message }));
     }
     return(Ok(new { isSuccess = true }));
 }