public async Task <IActionResult> Update([FromBody] MarketerUpdateInput input)
        {
            var result = await _marketerService.Update <MarketerDetailsOutput>(_marketer, input);

            return(Ok(result));
        }
 public Task <T> Update <T>(IMarketer principal, MarketerUpdateInput model)
     where T : MarketerOutput
 {
     throw new NotImplementedException();
 }