//Disbursement Sorting - after ready for collection, input place id + collectionDate + dptID, insert row to collection_detail table - Web Clerk
        public void InsertCollectionDetailsRow(WCF_CollectionDetail cd)
        {
            string token = cd.Token.Trim();

            if (AuthenticateToken(token))
            {
                BusinessLogic.InsertCollectionDetailsRow(cd.PlaceId, DateTime.Parse(cd.CollectionDate), cd.DepartmentId);
            }
        }
 //ViewRO - after ready for collection, input placeId + collectionDate + dptID + ROID, insert row to collection_detail table - Web Clerk
 public void SpecialRequestReadyUpdatesCDRDD(WCF_CollectionDetail cd)
 {
     BusinessLogic.SpecialRequestReadyUpdatesCDRDD(cd.PlaceId, DateTime.Parse(cd.CollectionDate), cd.RoId.Trim(), cd.DepartmentId.Trim());
 }