Bit.Api.Controllers.CiphersController.Get C# (CSharp) 메소드

Get() 개인적인 메소드

private Get ( System.DateTime since ) : Task
since System.DateTime
리턴 Task
        public async Task<CipherHistoryResponseModel> Get(DateTime since)
        {
            var history = await _cipherRepository.GetManySinceRevisionDateAndUserIdWithDeleteHistoryAsync(
                since, new Guid(_userManager.GetUserId(User)));
            return new CipherHistoryResponseModel(history.Item1, history.Item2);
        }

Same methods

CiphersController::Get ( string id ) : Task
CiphersController::Get ( ) : Task>