Exemple #1
0
        /// <summary>
        /// add...
        /// </summary>
        /// <param name="theCandidate">the candidate (authority)</param>
        /// <returns>the newly added local authority</returns>
        public async Task <ILocalAuthority> Add(IncomingLocalAuthority theCandidate)
        {
            It.IsNull(theCandidate)
            .AsGuard <ArgumentNullException>(nameof(theCandidate));

            var theTouchpoint = theCandidate.TouchpointID;

            It.IsEmpty(theTouchpoint)
            .AsGuard <ArgumentNullException>(nameof(theTouchpoint));

            var theAdminDistrict = theCandidate.LADCode;

            It.IsNull(theAdminDistrict)
            .AsGuard <ArgumentNullException>(nameof(theAdminDistrict));

            var usingAuthorityPath = StoragePaths.GetLocalAuthorityResourcePathFor(theAdminDistrict);

            (await DocumentStore.DocumentExists <LocalAuthority>(usingAuthorityPath, _partitionKey))
            .AsGuard <ConflictingResourceException>();

            return(await DocumentStore.AddDocument(theCandidate, StoragePaths.LocalAuthorityCollection));
        }
Exemple #2
0
 /// <summary>
 /// delete...
 /// </summary>
 /// <param name="theAdminDistrict">the admin distict (code)</param>
 /// <returns>the currently running task</returns>
 public async Task Delete(string theAdminDistrict)
 {
     var usingPath = StoragePaths.GetLocalAuthorityResourcePathFor(theAdminDistrict);
     await DocumentStore.DeleteDocument(usingPath, _partitionKey);
 }
Exemple #3
0
        /// <summary>
        /// get (the) local authority for...
        /// </summary>
        /// <param name="theAdminDistrict">the admin distict (code)</param>
        /// <returns>a local authority</returns>
        public async Task <ILocalAuthority> Get(string theAdminDistrict)
        {
            var usingPath = StoragePaths.GetLocalAuthorityResourcePathFor(theAdminDistrict);

            return(await DocumentStore.GetDocument <LocalAuthority>(usingPath, _partitionKey));
        }