示例#1
0
        public int StoreRecordToDB(RecordFileSystem fileSystem)
        {
            int result = 0;

            if (fileSystem != null)
            {
                PractitionerBusiness businessLayer = new PractitionerBusiness();
                result = businessLayer.StoreRecordToDB(fileSystem);
            }

            return(result);
        }